diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-24 22:18:54 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-09-24 22:18:54 +0000 |
commit | bce7851fd6cdd2997666cb7b210448d52fd6e2eb (patch) | |
tree | a93b066802c9bd52ab22427c21bc677032dc213b /lib/Target/PowerPC | |
parent | b866b259e562f1eafa7475694a4076372f55eaf2 (diff) | |
download | external_llvm-bce7851fd6cdd2997666cb7b210448d52fd6e2eb.zip external_llvm-bce7851fd6cdd2997666cb7b210448d52fd6e2eb.tar.gz external_llvm-bce7851fd6cdd2997666cb7b210448d52fd6e2eb.tar.bz2 |
Get rid of now unused {Four,Eight,Sixteen}ByteConstantSection
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetAsmInfo.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/PowerPC/PPCTargetAsmInfo.cpp b/lib/Target/PowerPC/PPCTargetAsmInfo.cpp index fc98e57..8980024 100644 --- a/lib/Target/PowerPC/PPCTargetAsmInfo.cpp +++ b/lib/Target/PowerPC/PPCTargetAsmInfo.cpp @@ -43,8 +43,6 @@ PPCDarwinTargetAsmInfo::PPCDarwinTargetAsmInfo(const PPCTargetMachine &TM): ConstantPoolSection = "\t.const\t"; JumpTableDataSection = ".const"; CStringSection = "\t.cstring"; - FourByteConstantSection = "\t.literal4\n"; - EightByteConstantSection = "\t.literal8\n"; ReadOnlySection = "\t.const\n"; if (TM.getRelocationModel() == Reloc::Static) { StaticCtorsSection = ".constructor"; @@ -140,9 +138,6 @@ PPCLinuxTargetAsmInfo::PPCLinuxTargetAsmInfo(const PPCTargetMachine &TM) : DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits"; 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"; PCSymbol = "."; // Set up DWARF directives |