summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader/BitcodeReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.h')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.h b/llvm/lib/Bitcode/Reader/BitcodeReader.h
index e831ea59231..1d4869a2d5a 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.h
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.h
@@ -196,9 +196,6 @@ class BitcodeReader : public GVMaterializer {
static const std::error_category &BitcodeErrorCategory();
- static ErrorOr<StringRef> convertToStringRef(ArrayRef<uint64_t> Record,
- unsigned Idx);
-
public:
enum ErrorType {
BitcodeStreamInvalidSize,
@@ -223,7 +220,7 @@ public:
InvalidValue // Invalid version, inst number, attr number, etc
};
- static std::error_code Error(ErrorType E) {
+ std::error_code Error(ErrorType E) {
return std::error_code(E, BitcodeErrorCategory());
}
@@ -255,7 +252,7 @@ public:
/// @brief Cheap mechanism to just extract module triple
/// @returns true if an error occurred.
- ErrorOr<StringRef> parseTriple();
+ ErrorOr<std::string> parseTriple();
static uint64_t decodeSignRotatedValue(uint64_t V);
@@ -357,7 +354,7 @@ private:
std::error_code ResolveGlobalAndAliasInits();
std::error_code ParseMetadata();
std::error_code ParseMetadataAttachment();
- ErrorOr<StringRef> parseModuleTriple();
+ ErrorOr<std::string> parseModuleTriple();
std::error_code ParseUseLists();
std::error_code InitStream();
std::error_code InitStreamFromBuffer();
OpenPOWER on IntegriCloud