From: Bill Wendling Date: Fri, 25 Dec 2009 13:37:27 +0000 (+0000) Subject: Remove dead store. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1a6726f79569bccd4eb0112d9448651ba62b1635;p=oota-llvm.git Remove dead store. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92156 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 74618e0dbca..6b24e24d371 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1905,7 +1905,6 @@ void AsmPrinter::EmitComments(const MachineInstr &MI) const { if (Newline) O << '\n'; O.PadToColumn(MAI->getCommentColumn()); O << MAI->getCommentString() << " Reload Reuse"; - Newline = true; } } }