summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-06-15 19:30:42 +0000
committerBill Wendling <isanbard@gmail.com>2012-06-15 19:30:42 +0000
commit4fd966347ae3c2cd7976834308bdd5f98f54fe8b (patch)
tree666fb3f0f397186187350fe0dc68ddbc23571d2c /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent6970fa8287964b24aa9630d9e3d7a489d61b69a7 (diff)
downloadbcm5719-llvm-4fd966347ae3c2cd7976834308bdd5f98f54fe8b.tar.gz
bcm5719-llvm-4fd966347ae3c2cd7976834308bdd5f98f54fe8b.zip
Remove assignments which aren't used afterwards.
llvm-svn: 158535
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index cf885251d6d..0719e2b044c 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/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';
OpenPOWER on IntegriCloud