[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h
Dan Gohman
djg at cray.com
Thu Jun 14 08:00:57 PDT 2007
Changes in directory llvm/include/llvm/Target:
TargetAsmInfo.h updated: 1.33 -> 1.34
---
Log message:
Eliminate some redundant newlines in asm output.
---
Diffs of the changes: (+2 -2)
TargetAsmInfo.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/Target/TargetAsmInfo.h
diff -u llvm/include/llvm/Target/TargetAsmInfo.h:1.33 llvm/include/llvm/Target/TargetAsmInfo.h:1.34
--- llvm/include/llvm/Target/TargetAsmInfo.h:1.33 Sat May 5 04:04:50 2007
+++ llvm/include/llvm/Target/TargetAsmInfo.h Thu Jun 14 10:00:27 2007
@@ -178,12 +178,12 @@
/// ConstantPoolSection - This is the section that we SwitchToSection right
/// before emitting the constant pool for a function.
- const char *ConstantPoolSection; // Defaults to "\t.section .rodata\n"
+ const char *ConstantPoolSection; // Defaults to "\t.section .rodata"
/// JumpTableDataSection - This is the section that we SwitchToSection right
/// before emitting the jump tables for a function when the relocation model
/// is not PIC.
- const char *JumpTableDataSection; // Defaults to "\t.section .rodata\n"
+ const char *JumpTableDataSection; // Defaults to "\t.section .rodata"
/// JumpTableDirective - if non-null, the directive to emit before a jump
/// table.
More information about the llvm-commits
mailing list