diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-06 17:38:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-06 17:38:38 +0000 |
commit | e3cc3f3c84abfdf8eb3bd19dfa806ceea49f15d6 (patch) | |
tree | cf632431a5862f4e5b082c6fb51c706037c27299 /lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | |
parent | 6cf4963cdc33f06031ebf86e0606afa4b79ccde5 (diff) |
Instead of printing unnecessary basic block labels as labels in
verbose-asm mode, print comments instead. This eliminates a non-comment
difference between verbose-asm mode and non-verbose-asm mode.
Also, factor out the relevant code out of all the targets and into
target-independent code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp')
-rw-r--r-- | lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp index 8ac9305007..a0fba86fa6 100644 --- a/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp @@ -660,7 +660,6 @@ bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) { // Print a label for the basic block. if (I != MF.begin()) { EmitBasicBlockStart(I); - O << '\n'; } for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end(); II != E; ++II) { @@ -844,7 +843,6 @@ bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) { // Print a label for the basic block. if (I != MF.begin()) { EmitBasicBlockStart(I); - O << '\n'; } for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); II != IE; ++II) { |