diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-08-11 13:03:56 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-08-11 13:03:56 +0000 |
commit | cbf684e6c66d392dbe5254443a10c04dd09863c7 (patch) | |
tree | 3c80c62be9a2eaf1c09f4662ff7011f17809add4 /llvm/lib/Object/IRObjectFile.cpp | |
parent | f99573b3ee6009494d431348ec92dcab7b6a218b (diff) | |
download | bcm5719-llvm-cbf684e6c66d392dbe5254443a10c04dd09863c7.tar.gz bcm5719-llvm-cbf684e6c66d392dbe5254443a10c04dd09863c7.zip |
Revert "Resolution-based LTO API."
This reverts commit r278330.
I made a change to the save temps output that is causing issues with the
bots. Didn't realize this because I had older output files sitting on
disk in my test output directory.
llvm-svn: 278331
Diffstat (limited to 'llvm/lib/Object/IRObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/IRObjectFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/IRObjectFile.cpp b/llvm/lib/Object/IRObjectFile.cpp index f86576f3d69..42c8ecd62da 100644 --- a/llvm/lib/Object/IRObjectFile.cpp +++ b/llvm/lib/Object/IRObjectFile.cpp @@ -324,5 +324,5 @@ llvm::object::IRObjectFile::create(MemoryBufferRef Object, return EC; std::unique_ptr<Module> &M = MOrErr.get(); - return llvm::make_unique<IRObjectFile>(BCOrErr.get(), std::move(M)); + return llvm::make_unique<IRObjectFile>(Object, std::move(M)); } |