diff options
Diffstat (limited to 'lib/Core')
-rw-r--r-- | lib/Core/ExternalDispatcher.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Core/ExternalDispatcher.cpp b/lib/Core/ExternalDispatcher.cpp index 9e3b0a49..eb60dcff 100644 --- a/lib/Core/ExternalDispatcher.cpp +++ b/lib/Core/ExternalDispatcher.cpp @@ -80,11 +80,7 @@ ExternalDispatcher::ExternalDispatcher() { if (executionEngine) { // 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. - try { - dl_symbols.LoadLibraryPermanently(0); - } catch (...) { - assert(0 && "Exception in LoadLibraryPermantently.\n"); - } + dl_symbols.LoadLibraryPermanently(0); } #ifdef WINDOWS |