From: Chris Lattner Date: Sun, 26 Jul 2009 06:36:20 +0000 (+0000) Subject: two files I missed in the last commit. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abd47512f736c08981d8bfcf24e6c01984dc4bba;p=platform%2Fupstream%2Fllvm.git two files I missed in the last commit. llvm-svn: 77137 --- diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index e12a0f2..d82710f 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -311,14 +311,14 @@ void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) { 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; } } diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index 47789c1..f34f86b 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/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; } }