summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-12-12 06:18:46 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-12-12 06:18:46 +0000
commit9b8ff28870abfccf9032d9d5d4d376f337950710 (patch)
treeb36d1d3e4ca3bb22dfa168b8d133a32dbaecc7ae /lib/ExecutionEngine
parent5cc966a6c1258e007d90dd0b92a8c146087de9a9 (diff)
downloadllvm-9b8ff28870abfccf9032d9d5d4d376f337950710.tar.gz
llvm-9b8ff28870abfccf9032d9d5d4d376f337950710.tar.bz2
llvm-9b8ff28870abfccf9032d9d5d4d376f337950710.tar.xz
Revert r91208. Something on Linux prevents the JIT from looking up a symbol
defined in the test, and I don't have time tonight to figure it out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91209 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp
index 3607f1fcb0..6d781c7e22 100644
--- a/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/lib/ExecutionEngine/JIT/JIT.cpp
@@ -681,7 +681,7 @@ void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) {
if (Ptr) return Ptr;
// If the global is external, just remember the address.
- if (GV->isDeclaration() || GV->hasAvailableExternallyLinkage()) {
+ if (GV->isDeclaration()) {
#if HAVE___DSO_HANDLE
if (GV->getName() == "__dso_handle")
return (void*)&__dso_handle;