aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-06-14 15:00:27 +0000
committerDan Gohman <gohman@apple.com>2007-06-14 15:00:27 +0000
commitaf67ea73184006b4f8a86ceb04fe318aad8b6558 (patch)
tree482f0f90fa2182701681b8bb17387edd316abb4b /include/llvm/Target
parent41783f0bc7cc9618b55fb0e7c4438b35dcd7194c (diff)
downloadexternal_llvm-af67ea73184006b4f8a86ceb04fe318aad8b6558.zip
external_llvm-af67ea73184006b4f8a86ceb04fe318aad8b6558.tar.gz
external_llvm-af67ea73184006b4f8a86ceb04fe318aad8b6558.tar.bz2
Eliminate some redundant newlines in asm output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 7e96c09..4e6d3b9 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -178,12 +178,12 @@ namespace llvm {
/// 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.