mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
clean up after metadata changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7723d45153
commit
52e2031d4a
lib/AsmParser
@ -1051,14 +1051,12 @@ bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
|
||||
/// ::= /* empty */
|
||||
/// ::= !dbg !42
|
||||
bool LLParser::ParseOptionalCustomMetadata() {
|
||||
|
||||
std::string Name;
|
||||
if (Lex.getKind() == lltok::NamedOrCustomMD) {
|
||||
Name = Lex.getStrVal();
|
||||
Lex.Lex();
|
||||
} else
|
||||
if (Lex.getKind() != lltok::NamedOrCustomMD)
|
||||
return false;
|
||||
|
||||
std::string Name = Lex.getStrVal();
|
||||
Lex.Lex();
|
||||
|
||||
if (Lex.getKind() != lltok::Metadata)
|
||||
return TokError("Expected '!' here");
|
||||
Lex.Lex();
|
||||
@ -2880,8 +2878,6 @@ bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
|
||||
if (ParseType(Ty, true /*void allowed*/)) return true;
|
||||
|
||||
if (Ty->isVoidTy()) {
|
||||
if (EatIfPresent(lltok::comma))
|
||||
if (ParseOptionalCustomMetadata()) return true;
|
||||
Inst = ReturnInst::Create(Context);
|
||||
return false;
|
||||
}
|
||||
@ -2917,8 +2913,6 @@ bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
|
||||
}
|
||||
}
|
||||
}
|
||||
if (EatIfPresent(lltok::comma))
|
||||
if (ParseOptionalCustomMetadata()) return true;
|
||||
|
||||
Inst = ReturnInst::Create(Context, RV);
|
||||
return false;
|
||||
|
@ -64,7 +64,6 @@ namespace lltok {
|
||||
kw_sideeffect,
|
||||
kw_msasm,
|
||||
kw_gc,
|
||||
kw_dbg,
|
||||
kw_c,
|
||||
|
||||
kw_cc, kw_ccc, kw_fastcc, kw_coldcc,
|
||||
|
Loading…
x
Reference in New Issue
Block a user