diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-09-07 18:50:20 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-09-07 18:50:20 +0000 |
commit | 61c958e691bdaa04897553d97153bcdd73996aa0 (patch) | |
tree | d690913b5808065ed341ca7d00433b0b000adb93 /lib/CodeGen/AsmPrinter.cpp | |
parent | afd39f0cc452026eac4a9dd4d875e571de6e0a35 (diff) |
Fix pasto that was breaking x86 tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 91b2bb8f28..e6d56244c9 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -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 |