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
This commit is contained in:
Teresa Johnson
2016-08-11 13:03:56 +00:00
parent f99573b3ee
commit cbf684e6c6
37 changed files with 1048 additions and 2051 deletions

View File

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