mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
Re-committing the last bit of change. It shouldn't break PPC this time.
llvm-svn: 25982
This commit is contained in:
parent
4efafdb7f4
commit
d5d3d7ad9e
@ -2137,10 +2137,9 @@ public:
|
||||
Code += ", Tmp" + utostr(i + ResNo);
|
||||
emitCheck(Code + ")");
|
||||
|
||||
// This breaks ppc
|
||||
//for (unsigned i = 0; i < NumRes; ++i)
|
||||
// emitCode("Tmp" + utostr(i+ResNo) + " = Select(Tmp" +
|
||||
// utostr(i+ResNo) + ");");
|
||||
for (unsigned i = 0; i < NumRes; ++i)
|
||||
emitCode("Tmp" + utostr(i+ResNo) + " = Select(Tmp" +
|
||||
utostr(i+ResNo) + ");");
|
||||
|
||||
TmpNo = ResNo + NumRes;
|
||||
} else {
|
||||
@ -2885,6 +2884,10 @@ void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
|
||||
<< " case ISD::EntryToken: // These leaves remain the same.\n"
|
||||
<< " case ISD::BasicBlock:\n"
|
||||
<< " case ISD::Register:\n"
|
||||
<< " case ISD::TargetConstant:\n"
|
||||
<< " case ISD::TargetConstantPool:\n"
|
||||
<< " case ISD::TargetFrameIndex:\n"
|
||||
<< " case ISD::TargetGlobalAddress:\n"
|
||||
<< " return N;\n"
|
||||
<< " case ISD::AssertSext:\n"
|
||||
<< " case ISD::AssertZext: {\n"
|
||||
|
Loading…
Reference in New Issue
Block a user