diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-26 06:36:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-26 06:36:20 +0000 |
commit | 47399189c836d255a0b402a0ed5c36d775de5511 (patch) | |
tree | ce56a9971e178abf28753602deaf73953ac9a76f /lib/CodeGen/ELFWriter.cpp | |
parent | 3081d4aa14c8bbe562d60920f3aa3c9a407377fb (diff) | |
download | external_llvm-47399189c836d255a0b402a0ed5c36d775de5511.zip external_llvm-47399189c836d255a0b402a0ed5c36d775de5511.tar.gz external_llvm-47399189c836d255a0b402a0ed5c36d775de5511.tar.bz2 |
two files I missed in the last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77137 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | lib/CodeGen/ELFWriter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 47789c1..f34f86b 100644 --- a/lib/CodeGen/ELFWriter.cpp +++ b/lib/CodeGen/ELFWriter.cpp @@ -157,14 +157,14 @@ ELFSection &ELFWriter::getConstantPoolSection(MachineConstantPoolEntry &CPE) { SectionKind Kind; switch (CPE.getRelocationInfo()) { default: llvm_unreachable("Unknown section kind"); - case 2: Kind = SectionKind::getReadOnlyWithRel(); break; - case 1: Kind = SectionKind::getReadOnlyWithRelLocal(); break; + case 2: Kind = SectionKind::get(SectionKind::ReadOnlyWithRel); break; + case 1: Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal); break; case 0: switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) { - case 4: Kind = SectionKind::getMergableConst4(); break; - case 8: Kind = SectionKind::getMergableConst8(); break; - case 16: Kind = SectionKind::getMergableConst16(); break; - default: Kind = SectionKind::getMergableConst(); break; + case 4: Kind = SectionKind::get(SectionKind::MergableConst4); break; + case 8: Kind = SectionKind::get(SectionKind::MergableConst8); break; + case 16: Kind = SectionKind::get(SectionKind::MergableConst16); break; + default: Kind = SectionKind::get(SectionKind::MergableConst); break; } } |