Add braces.

llvm-svn: 136612
This commit is contained in:
Jay Foad 2011-08-01 12:48:54 +00:00
parent 26db79d236
commit 92c1913e22
1 changed files with 2 additions and 1 deletions

View File

@ -1397,8 +1397,9 @@ void AssemblyWriter::printAlias(const GlobalAlias *GA) {
if (Aliasee == 0) {
TypePrinter.print(GA->getType(), Out);
Out << " <<NULL ALIASEE>>";
} else
} else {
writeOperand(Aliasee, !isa<ConstantExpr>(Aliasee));
}
printInfoComment(*GA);
Out << '\n';