Get rid of the annoying blank lines before labels.
[oota-llvm.git] / lib / Target / PowerPC / PPCAsmPrinter.cpp
index 6f0e41aec5fc798280abf33ac9bc29a415ca2ab4..d2d7f53aed06f3214b580305463122b4bab996ed 100644 (file)
@@ -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);
     }
   }