diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-06-15 19:30:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-06-15 19:30:42 +0000 |
commit | 4b8e1fd054f88b443c4983c7c8b9f2e1f22e3686 (patch) | |
tree | 00e7f5768de2205adab97bb8a47018c2bddce736 /lib/CodeGen/MachineBasicBlock.cpp | |
parent | e68470a1e44ae558cb13b99c28519e3c1f399231 (diff) |
Remove assignments which aren't used afterwards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158535 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | lib/CodeGen/MachineBasicBlock.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index cf885251d6..0719e2b044 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/lib/CodeGen/MachineBasicBlock.cpp @@ -271,11 +271,9 @@ void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const { } if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; } if (hasAddressTaken()) { OS << Comma << "ADDRESS TAKEN"; Comma = ", "; } - if (Alignment) { + if (Alignment) OS << Comma << "Align " << Alignment << " (" << (1u << Alignment) << " bytes)"; - Comma = ", "; - } OS << '\n'; |