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 | abd47512f736c08981d8bfcf24e6c01984dc4bba (patch) | |
tree | 7d93253897214d6b640e1f2a9bc103181daecca5 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 2d7270d577bbe71af820117544f43017262c9328 (diff) | |
download | bcm5719-llvm-abd47512f736c08981d8bfcf24e6c01984dc4bba.tar.gz bcm5719-llvm-abd47512f736c08981d8bfcf24e6c01984dc4bba.zip |
two files I missed in the last commit.
llvm-svn: 77137
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index e12a0f2f0e7..d82710fb10f 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; } } |