Tidyness.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128288 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2011-03-25 17:47:14 +00:00
parent ef7b8d9e5a
commit 0143ac1368

View File

@ -880,6 +880,7 @@ bool AsmParser::ParseStatement() {
EatToEndOfStatement();
return false;
}
// Allow an integer followed by a ':' as a directional local label.
if (Lexer.is(AsmToken::Integer)) {
LocalLabelVal = getTok().getIntVal();
@ -896,8 +897,7 @@ bool AsmParser::ParseStatement() {
return TokError("unexpected token at start of statement");
}
}
}
else if (ParseIdentifier(IDVal)) {
} else if (ParseIdentifier(IDVal)) {
if (!TheCondState.Ignore)
return TokError("unexpected token at start of statement");
IDVal = "";