diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-03-13 03:56:27 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-03-13 03:56:27 +0000 |
| commit | 41ed5d0067c402d512910c586024320eb9a14498 (patch) | |
| tree | c323743ebe40fffd25e4948fc4fa8d0685ae8f8b | |
| parent | 0c1e8452cc75cc31c6bace9217c05839d709b944 (diff) | |
| download | bcm5719-llvm-41ed5d0067c402d512910c586024320eb9a14498.tar.gz bcm5719-llvm-41ed5d0067c402d512910c586024320eb9a14498.zip | |
Fix build break in this code. Nothing uses this header, but the modules
buildbot builds it anyway and was angry because of this.
llvm-svn: 232139
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h b/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h index 0e218e2e7f4..b10a275b12e 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h @@ -274,7 +274,7 @@ private: // Set the compile actions for this module: for (auto &KVPair : NewStubInfos) { std::string BodyName = Mangle(KVPair->first + BodySuffix, - *M.getDataLayout()); + M.getDataLayout()); auto &CCInfo = KVPair->second; CCInfo.setCompileAction( [=](){ @@ -291,7 +291,7 @@ private: for (auto &KVPair : StubInfos) { std::string AddrName = Mangle(KVPair.first + AddrSuffix, - *M.getDataLayout()); + M.getDataLayout()); auto &CCInfo = KVPair.second; CCInfo.setUpdateAction( CompileCallbackMgr.getLocalFPUpdater(StubsH, AddrName)); |

