mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Revert "Convert a few std::strings to StringRef."
This reverts commit r212342. We can get a StringRef into the current Record, but not one in the bitcode itself since the string is compressed in it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user