1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Register the frame register function when allocating the JIT,

so that lli works out of the box with -enable-eh.

llvm-svn: 54920
This commit is contained in:
Nicolas Geoffray 2008-08-18 14:53:56 +00:00
parent 3b0cb367c0
commit c5c2108727

View File

@ -78,11 +78,6 @@ ExecutionEngine *ExecutionEngine::createJIT(ModuleProvider *MP,
ExecutionEngine *EE = JIT::createJIT(MP, ErrorStr, JMM, Fast); ExecutionEngine *EE = JIT::createJIT(MP, ErrorStr, JMM, Fast);
if (!EE) return 0; if (!EE) return 0;
// Register routine for informing unwinding runtime about new EH frames
#if defined(__GNUC__)
EE->InstallExceptionTableRegister(__register_frame);
#endif
// Make sure we can resolve symbols in the program as well. The zero arg // 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. // to the function tells DynamicLibrary to load the program, not a library.
sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr); sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr);
@ -111,6 +106,11 @@ JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
abort(); abort();
} }
// Register routine for informing unwinding runtime about new EH frames
#if defined(__GNUC__)
InstallExceptionTableRegister(__register_frame);
#endif
// Initialize passes. // Initialize passes.
PM.doInitialization(); PM.doInitialization();
} }