mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-15 07:33:18 +00:00
Remove assignments which aren't used afterwards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e68470a1e4
commit
4b8e1fd054
@ -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';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user