Remove a redundant newline in the asm output for ELF .rodata sections.

llvm-svn: 37756
This commit is contained in:
Dan Gohman 2007-06-27 15:09:47 +00:00
parent 7139a48057
commit 1cbdcac409
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
break;
case X86Subtarget::isELF:
ReadOnlySection = "\t.section\t.rodata\n";
ReadOnlySection = "\t.section\t.rodata";
FourByteConstantSection = "\t.section\t.rodata.cst4,\"aM\",@progbits,4";
EightByteConstantSection = "\t.section\t.rodata.cst8,\"aM\",@progbits,8";
SixteenByteConstantSection = "\t.section\t.rodata.cst16,\"aM\",@progbits,16";