diff --git a/llvm/examples/Kaleidoscope/toy.cpp b/llvm/examples/Kaleidoscope/toy.cpp
index 3c1ce8b4d417..6b0560a144c4 100644
--- a/llvm/examples/Kaleidoscope/toy.cpp
+++ b/llvm/examples/Kaleidoscope/toy.cpp
@@ -1107,12 +1107,13 @@ int main() {
 
   // Make the module, which holds all the code.
   TheModule = new Module("my cool jit", Context);
-  
-  // Create the JIT.
-  TheExecutionEngine = EngineBuilder(TheModule).create();
 
   {
     ExistingModuleProvider OurModuleProvider(TheModule);
+
+    // Create the JIT.
+    TheExecutionEngine = EngineBuilder(&OurModuleProvider).create();
+
     FunctionPassManager OurFPM(&OurModuleProvider);
       
     // Set up the optimizer pipeline.  Start with registering info about how the