mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
Remove 'else' after 'return'. Fix formatting of a 'switch' statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222955 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2330,9 +2330,8 @@ bool TGParser::ParseMultiClass() {
|
||||
if (Lex.getCode() != tgtok::l_brace) {
|
||||
if (!inherits)
|
||||
return TokError("expected '{' in multiclass definition");
|
||||
else if (Lex.getCode() != tgtok::semi)
|
||||
if (Lex.getCode() != tgtok::semi)
|
||||
return TokError("expected ';' in multiclass definition");
|
||||
else
|
||||
Lex.Lex(); // eat the ';'.
|
||||
} else {
|
||||
if (Lex.Lex() == tgtok::r_brace) // eat the '{'.
|
||||
|
Reference in New Issue
Block a user