summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-19 20:30:41 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-19 20:30:41 +0000
commita3ad4e693c6531d7cd4c1fb35629b23e5b1416bb (patch)
treebde162434a675cc4cd97c5c9d01e57ad2ec1a5e3 /llvm/lib/ExecutionEngine
parent8a2a0dfba5c1224bc5a79d99156133de37767e30 (diff)
downloadbcm5719-llvm-a3ad4e693c6531d7cd4c1fb35629b23e5b1416bb.tar.gz
bcm5719-llvm-a3ad4e693c6531d7cd4c1fb35629b23e5b1416bb.zip
move getNameWithPrefix and getSymbol to TargetMachine.
TargetLoweringBase is implemented in CodeGen, so before this patch we had a dependency fom Target to CodeGen. This would show up as a link failure of llvm-stress when building with -DBUILD_SHARED_LIBS=ON. This fixes pr18900. llvm-svn: 201711
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
index 4d5723a7a13..f94185d4a46 100644
--- a/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
+++ b/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
@@ -372,7 +372,7 @@ void *MCJIT::getPointerToFunction(Function *F) {
// load address of the symbol, not the local address.
Mangler Mang(TM->getDataLayout());
SmallString<128> Name;
- TM->getTargetLowering()->getNameWithPrefix(Name, F, Mang);
+ TM->getNameWithPrefix(Name, F, Mang);
return (void*)Dyld.getSymbolLoadAddress(Name);
}
OpenPOWER on IntegriCloud