two files I missed in the last commit.
authorChris Lattner <sabre@nondot.org>
Sun, 26 Jul 2009 06:36:20 +0000 (06:36 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 26 Jul 2009 06:36:20 +0000 (06:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77137 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp
lib/CodeGen/ELFWriter.cpp

index e12a0f2f0e7b6d7d6fded7ee04ec376dcc812bbc..d82710fb10f8936dd8b513663172dd322d437087 100644 (file)
@@ -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;
       }
     }
 
index 47789c1ffe8d7062e33e8737de76c698bedad70f..f34f86b4f4b03f0e4a27ac4de8fd8aca091db5c0 100644 (file)
@@ -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;
     }
   }