Comment parsing: add a missing 'else'. Found by inspection.

No testcase because we were just building an extra AST node and eventually
throwing it away, so it did not affect correctness.

llvm-svn: 170563
This commit is contained in:
Dmitri Gribenko 2012-12-19 17:17:09 +00:00
parent ae9d8aeb2b
commit 696d7226d6
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ BlockCommandComment *Parser::parseBlockCommand() {
PC = S.actOnParamCommandStart(Tok.getLocation(),
Tok.getEndLocation(),
Tok.getCommandID());
} if (Info->IsTParamCommand) {
} else if (Info->IsTParamCommand) {
IsTParam = true;
TPC = S.actOnTParamCommandStart(Tok.getLocation(),
Tok.getEndLocation(),