don't emit \n's at the start of X86AsmPrinter::runOnMachineFunction,

.o files don't like that.

llvm-svn: 95187
This commit is contained in:
Chris Lattner 2010-02-03 01:49:49 +00:00
parent f1866ab682
commit 0b78cc2af5
2 changed files with 2 additions and 1 deletions

View File

@ -391,6 +391,8 @@ void AsmPrinter::EmitFunctionBody() {
// Print out jump tables referenced by the function.
EmitJumpTableInfo();
OutStreamer.AddBlankLine();
}

View File

@ -55,7 +55,6 @@ void X86AsmPrinter::PrintPICBaseSymbol() const {
///
bool X86AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
SetupMachineFunction(MF);
O << "\n\n";
// COFF and Cygwin specific mangling stuff. This should be moved out to the
// mangler or handled some other way?