Add braces.
[oota-llvm.git] / lib / VMCore / AsmWriter.cpp
index de993eec69f94e3a13e4e8d6afc3f8def2fbbff0..7deba0d0382c0d4401de900aad5587bb3ca13c55 100644 (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';