diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-01 23:57:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-01 23:57:16 +0000 |
commit | f8d9710b6f85e1058c7a24e9904f1e9e928022c7 (patch) | |
tree | ca23023078f7199a99d194909e814301e5efc2d7 /llvm/lib/CodeGen/ELFWriter.cpp | |
parent | 0c40266b5a7a58774a2f33128b68d45ee1801920 (diff) | |
download | bcm5719-llvm-f8d9710b6f85e1058c7a24e9904f1e9e928022c7.tar.gz bcm5719-llvm-f8d9710b6f85e1058c7a24e9904f1e9e928022c7.zip |
(re)introduce new simpler apis for creation sectionkinds.
llvm-svn: 77834
Diffstat (limited to 'llvm/lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ELFWriter.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index be1e6bfe751..499a666c6a2 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/lib/CodeGen/ELFWriter.cpp @@ -182,8 +182,7 @@ ELFSection &ELFWriter::getJumpTableSection() { const TargetLoweringObjectFile &TLOF = TM.getTargetLowering()->getObjFileLowering(); - return getSection(TLOF.getSectionForConstant( - SectionKind::get(SectionKind::ReadOnly)) + return getSection(TLOF.getSectionForConstant(SectionKind::getReadOnly()) ->getName(), ELFSection::SHT_PROGBITS, ELFSection::SHF_ALLOC, Align); @@ -194,16 +193,16 @@ ELFSection &ELFWriter::getConstantPoolSection(MachineConstantPoolEntry &CPE) { SectionKind Kind; switch (CPE.getRelocationInfo()) { default: llvm_unreachable("Unknown section kind"); - case 2: Kind = SectionKind::get(SectionKind::ReadOnlyWithRel); break; + case 2: Kind = SectionKind::getReadOnlyWithRel(); break; case 1: - Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal); + Kind = SectionKind::getReadOnlyWithRelLocal(); break; case 0: switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) { - case 4: Kind = SectionKind::get(SectionKind::MergeableConst4); break; - case 8: Kind = SectionKind::get(SectionKind::MergeableConst8); break; - case 16: Kind = SectionKind::get(SectionKind::MergeableConst16); break; - default: Kind = SectionKind::get(SectionKind::MergeableConst); break; + case 4: Kind = SectionKind::getMergeableConst4(); break; + case 8: Kind = SectionKind::getMergeableConst8(); break; + case 16: Kind = SectionKind::getMergeableConst16(); break; + default: Kind = SectionKind::getMergeableConst(); break; } } |