From: Jay Foad Date: Mon, 1 Aug 2011 12:48:54 +0000 (+0000) Subject: Add braces. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5cd8ea2fd3a88639bc6556e9564a95bcdd9598db;p=oota-llvm.git Add braces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136612 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index de993eec69f..7deba0d0382 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1397,8 +1397,9 @@ void AssemblyWriter::printAlias(const GlobalAlias *GA) { if (Aliasee == 0) { TypePrinter.print(GA->getType(), Out); Out << " <>"; - } else + } else { writeOperand(Aliasee, !isa(Aliasee)); + } printInfoComment(*GA); Out << '\n';