Put 'else' on same line as preceding curly brace per coding standards. No functional change.

llvm-svn: 179993
This commit is contained in:
Craig Topper 2013-04-22 04:22:40 +00:00
parent 8ddc2b50e8
commit f15655b2d9
1 changed files with 6 additions and 12 deletions

View File

@ -2636,12 +2636,10 @@ bool AsmParser::ParseDirectiveLoc() {
Flags |= DWARF2_FLAG_IS_STMT; Flags |= DWARF2_FLAG_IS_STMT;
else else
return Error(Loc, "is_stmt value not 0 or 1"); return Error(Loc, "is_stmt value not 0 or 1");
} } else {
else {
return Error(Loc, "is_stmt value not the constant value of 0 or 1"); return Error(Loc, "is_stmt value not the constant value of 0 or 1");
} }
} } else if (Name == "isa") {
else if (Name == "isa") {
Loc = getTok().getLoc(); Loc = getTok().getLoc();
const MCExpr *Value; const MCExpr *Value;
if (parseExpression(Value)) if (parseExpression(Value))
@ -2652,16 +2650,13 @@ bool AsmParser::ParseDirectiveLoc() {
if (Value < 0) if (Value < 0)
return Error(Loc, "isa number less than zero"); return Error(Loc, "isa number less than zero");
Isa = Value; Isa = Value;
} } else {
else {
return Error(Loc, "isa number not a constant value"); return Error(Loc, "isa number not a constant value");
} }
} } else if (Name == "discriminator") {
else if (Name == "discriminator") {
if (parseAbsoluteExpression(Discriminator)) if (parseAbsoluteExpression(Discriminator))
return true; return true;
} } else {
else {
return Error(Loc, "unknown sub-directive in '.loc' directive"); return Error(Loc, "unknown sub-directive in '.loc' directive");
} }
@ -3630,8 +3625,7 @@ bool AsmParser::ParseDirectiveElseIf(SMLoc DirectiveLoc) {
if (LastIgnoreState || TheCondState.CondMet) { if (LastIgnoreState || TheCondState.CondMet) {
TheCondState.Ignore = true; TheCondState.Ignore = true;
eatToEndOfStatement(); eatToEndOfStatement();
} } else {
else {
int64_t ExprValue; int64_t ExprValue;
if (parseAbsoluteExpression(ExprValue)) if (parseAbsoluteExpression(ExprValue))
return true; return true;