mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Fix some abuses of StringRef
We were taking a StringRef to a temporary result, which can go horribly wrong. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a220aeb58f
commit
42a68443a1
@ -1207,8 +1207,8 @@ AArch64AsmParser::ParseRelocPrefix(AArch64MCExpr::VariantKind &RefKind) {
|
||||
return MatchOperand_ParseFail;
|
||||
}
|
||||
|
||||
StringRef lowerCase = Parser.getTok().getIdentifier().lower();
|
||||
RefKind = StringSwitch<AArch64MCExpr::VariantKind>(lowerCase)
|
||||
std::string LowerCase = Parser.getTok().getIdentifier().lower();
|
||||
RefKind = StringSwitch<AArch64MCExpr::VariantKind>(LowerCase)
|
||||
.Case("got", AArch64MCExpr::VK_AARCH64_GOT)
|
||||
.Case("got_lo12", AArch64MCExpr::VK_AARCH64_GOT_LO12)
|
||||
.Case("lo12", AArch64MCExpr::VK_AARCH64_LO12)
|
||||
@ -1343,7 +1343,8 @@ AArch64AsmParser::ParseCRxOperand(
|
||||
return MatchOperand_ParseFail;
|
||||
}
|
||||
|
||||
StringRef Tok = Parser.getTok().getIdentifier().lower();
|
||||
std::string LowerTok = Parser.getTok().getIdentifier().lower();
|
||||
StringRef Tok(LowerTok);
|
||||
if (Tok[0] != 'c') {
|
||||
Error(S, "Expected cN operand where 0 <= N <= 15");
|
||||
return MatchOperand_ParseFail;
|
||||
|
Loading…
Reference in New Issue
Block a user