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 | 32e5347eb80b98f01888f4344b5aa29e2abca102 (patch) | |
tree | 81a55e3494788c64e26a236e0fe423f4b47abb7e /llvm/lib/Target/Sparc | |
parent | f5b9938ef6a4694d4815176c89b37c9e33447e65 (diff) | |
download | bcm5719-llvm-32e5347eb80b98f01888f4344b5aa29e2abca102.tar.gz bcm5719-llvm-32e5347eb80b98f01888f4344b5aa29e2abca102.zip |
Get rid of the annoying blank lines before labels.
llvm-svn: 46667
Diffstat (limited to 'llvm/lib/Target/Sparc')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcAsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp b/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp index 26542836545..12eae8ab955 100644 --- a/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp +++ b/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp @@ -76,7 +76,7 @@ FunctionPass *llvm::createSparcCodePrinterPass(std::ostream &o, return new SparcAsmPrinter(o, tm, tm.getTargetAsmInfo()); } -/// runOnMachineFunction - This uses the printMachineInstruction() +/// runOnMachineFunction - This uses the printInstruction() /// method to print assembly for each instruction. /// bool SparcAsmPrinter::runOnMachineFunction(MachineFunction &MF) { @@ -121,7 +121,6 @@ bool SparcAsmPrinter::runOnMachineFunction(MachineFunction &MF) { for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end(); II != E; ++II) { // Print the assembly for the instruction. - O << "\t"; printInstruction(II); ++EmittedInsts; } |