Honour addGlobalMapping() in the interpreter, if it was used to add mappings for
authorTorok Edwin <edwintorok@gmail.com>
Tue, 30 Mar 2010 12:31:58 +0000 (12:31 +0000)
committerTorok Edwin <edwintorok@gmail.com>
Tue, 30 Mar 2010 12:31:58 +0000 (12:31 +0000)
external Functions (the JIT does honour this).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99885 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

index 7b061d3ac3464cd93269d02916cc0d247aec7ead..9b3f25dc92676faf32c3c7e822d8efa1947f9ccc 100644 (file)
@@ -265,6 +265,7 @@ GenericValue Interpreter::callExternalFunction(Function *F,
   if (RF == RawFunctions->end()) {
     RawFn = (RawFunc)(intptr_t)
       sys::DynamicLibrary::SearchForAddressOfSymbol(F->getName());
+    RawFn = (RawFunc)(intptr_t)getPointerToGlobalIfAvailable(F);
     if (RawFn != 0)
       RawFunctions->insert(std::make_pair(F, RawFn));  // Cache for later
   } else {