Fix pasto that was breaking x86 tests.
authorEvan Cheng <evan.cheng@apple.com>
Thu, 7 Sep 2006 18:50:20 +0000 (18:50 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 7 Sep 2006 18:50:20 +0000 (18:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30151 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter.cpp

index 91b2bb8f28a2f4a15ccf5db46a97bbe92629e2a0..e6d56244c9c5e8c441c3d4f156192638b52c86ea 100644 (file)
@@ -132,10 +132,10 @@ void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
     if (TAI->getFourByteConstantSection() &&
         TM.getTargetData()->getTypeSize(Ty) == 4)
       FourByteCPs.push_back(std::make_pair(CPE, i));
-    else if (TAI->getSectionEndDirectiveSuffix() &&
+    else if (TAI->getEightByteConstantSection() &&
              TM.getTargetData()->getTypeSize(Ty) == 8)
       EightByteCPs.push_back(std::make_pair(CPE, i));
-    else if (TAI->getSectionEndDirectiveSuffix() &&
+    else if (TAI->getSixteenByteConstantSection() &&
              TM.getTargetData()->getTypeSize(Ty) == 16)
       SixteenByteCPs.push_back(std::make_pair(CPE, i));
     else