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
This commit is contained in:
Richard Smith 2015-03-13 03:56:27 +00:00
parent 0c1e8452cc
commit 41ed5d0067
1 changed files with 2 additions and 2 deletions

View File

@ -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));