Changes in directory llvm/lib/ExecutionEngine:
ExecutionEngine.cpp updated: 1.76 -> 1.77 --- Log message: remove the intrinsiclowering hook --- Diffs of the changes: (+5 -7) ExecutionEngine.cpp | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) Index: llvm/lib/ExecutionEngine/ExecutionEngine.cpp diff -u llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.76 llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.77 --- llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.76 Wed Mar 22 00:07:50 2006 +++ llvm/lib/ExecutionEngine/ExecutionEngine.cpp Wed Mar 22 23:22:51 2006 @@ -160,24 +160,22 @@ /// NULL is returned. /// ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP, - bool ForceInterpreter, - IntrinsicLowering *IL) { + bool ForceInterpreter) { ExecutionEngine *EE = 0; // Unless the interpreter was explicitly selected, try making a JIT. if (!ForceInterpreter && JITCtor) - EE = JITCtor(MP, IL); + EE = JITCtor(MP); // If we can't make a JIT, make an interpreter instead. if (EE == 0 && InterpCtor) - EE = InterpCtor(MP, IL); + EE = InterpCtor(MP); - if (EE == 0) - delete IL; - else + if (EE) { // Make sure we can resolve symbols in the program as well. The zero arg // to the function tells DynamicLibrary to load the program, not a library. sys::DynamicLibrary::LoadLibraryPermanently(0); + } return EE; } _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits