diff options
author | asl <asl@91177308-0d34-0410-b5e6-96231b3b80d8> | 2008-08-16 12:58:46 +0000 |
---|---|---|
committer | asl <asl@91177308-0d34-0410-b5e6-96231b3b80d8> | 2008-08-16 12:58:46 +0000 |
commit | 7e07ea5d0b6b2bf75cbf1a5ed1569c9f7f3a683e (patch) | |
tree | ea3bd271061ecf9514531a34cf3112701b2bfc29 /lib/Target/PowerPC/PPCTargetAsmInfo.cpp | |
parent | b204cd5a6fb370d50ec2ac03d0a717282b326c0d (diff) | |
download | external_llvm-7e07ea5d0b6b2bf75cbf1a5ed1569c9f7f3a683e.zip external_llvm-7e07ea5d0b6b2bf75cbf1a5ed1569c9f7f3a683e.tar.gz external_llvm-7e07ea5d0b6b2bf75cbf1a5ed1569c9f7f3a683e.tar.bz2 |
Use proper strings section name for PPC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54846 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetAsmInfo.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetAsmInfo.cpp b/lib/Target/PowerPC/PPCTargetAsmInfo.cpp index 2fd9c2b..dc863e2 100644 --- a/lib/Target/PowerPC/PPCTargetAsmInfo.cpp +++ b/lib/Target/PowerPC/PPCTargetAsmInfo.cpp @@ -111,7 +111,7 @@ PPCLinuxTargetAsmInfo::PPCLinuxTargetAsmInfo(const PPCTargetMachine &TM) : PrivateGlobalPrefix = ""; ConstantPoolSection = "\t.section .rodata.cst4\t"; JumpTableDataSection = ".section .rodata.cst4"; - CStringSection = "\t.section\t.rodata"; + CStringSection = ".rodata.str"; StaticCtorsSection = ".section\t.ctors,\"aw\",@progbits"; StaticDtorsSection = ".section\t.dtors,\"aw\",@progbits"; UsedDirective = "\t# .no_dead_strip\t"; |