r600g/llvm: Lower ULT A, B, C to SETGT_UINT A, C, B

This commit is contained in:
Tom Stellard 2012-04-27 16:22:58 -04:00
parent a2e08a40f5
commit 9e522bd201
1 changed files with 7 additions and 0 deletions

View File

@ -343,6 +343,13 @@ bool R600LowerInstructionsPass::runOnMachineFunction(MachineFunction &MF)
break;
}
case AMDIL::ULT:
BuildMI(MBB, I, MBB.findDebugLoc(I), TII->get(AMDIL::SETGT_UINT))
.addOperand(MI.getOperand(0))
.addOperand(MI.getOperand(2))
.addOperand(MI.getOperand(1));
break;
default:
continue;
}