diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-02-02 08:39:46 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-02-02 08:39:46 +0000 |
commit | 4eecdeb3faf5df864790175da5d58301b751ec11 (patch) | |
tree | 4f9897e230b12c103b17472dfc10b801eaea2d6f /lib/Target/PowerPC/PPCAsmPrinter.cpp | |
parent | 916a9f071f525f29bb17e96dfea99431eb3d2a38 (diff) | |
download | external_llvm-4eecdeb3faf5df864790175da5d58301b751ec11.zip external_llvm-4eecdeb3faf5df864790175da5d58301b751ec11.tar.gz external_llvm-4eecdeb3faf5df864790175da5d58301b751ec11.tar.bz2 |
Get rid of the annoying blank lines before labels.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index 6f0e41a..d2d7f53 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -610,7 +610,6 @@ bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) { for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end(); II != E; ++II) { // Print the assembly for the instruction. - O << "\t"; printMachineInstruction(II); } } @@ -833,7 +832,6 @@ bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) { for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); II != IE; ++II) { // Print the assembly for the instruction. - O << "\t"; printMachineInstruction(II); } } |