mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 05:41:40 +00:00
Fix pasto that was breaking x86 tests.
llvm-svn: 30151
This commit is contained in:
parent
064d0ec956
commit
fe263e552a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user