diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-11-11 19:50:24 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-11-11 19:50:24 +0000 |
commit | cd513a41c17a3591e764b1ff986ae501a28cc5f5 (patch) | |
tree | 87db3a383097fc45a617ddc23c42b96e481efddd /llvm/lib/Object | |
parent | c0032b717886f4923b682f0f5972ab4ab9c32640 (diff) | |
download | bcm5719-llvm-cd513a41c17a3591e764b1ff986ae501a28cc5f5.tar.gz bcm5719-llvm-cd513a41c17a3591e764b1ff986ae501a28cc5f5.zip |
Bitcode: Clean up error handling for certain bitcode query functions.
The functions getBitcodeTargetTriple(), isBitcodeContainingObjCCategory(),
getBitcodeProducerString() and hasGlobalValueSummary() now return errors
via their return value rather than via the diagnostic handler.
To make this work, re-implement these functions using non-member functions
so that they can be used without the LLVMContext required by BitcodeReader.
Differential Revision: https://reviews.llvm.org/D26532
llvm-svn: 286623
Diffstat (limited to 'llvm/lib/Object')
-rw-r--r-- | llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp b/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp index 780324dafee..e597fc20a1f 100644 --- a/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp +++ b/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp @@ -67,18 +67,6 @@ ModuleSummaryIndexObjectFile::findBitcodeInMemBuffer(MemoryBufferRef Object) { } } -// Looks for module summary index in the given memory buffer. -// returns true if found, else false. -bool ModuleSummaryIndexObjectFile::hasGlobalValueSummaryInMemBuffer( - MemoryBufferRef Object, - const DiagnosticHandlerFunction &DiagnosticHandler) { - ErrorOr<MemoryBufferRef> BCOrErr = findBitcodeInMemBuffer(Object); - if (!BCOrErr) - return false; - - return hasGlobalValueSummary(BCOrErr.get(), DiagnosticHandler); -} - // Parse module summary index in the given memory buffer. // Return new ModuleSummaryIndexObjectFile instance containing parsed // module summary/index. |