diff options
author | Tom Stellard <[email protected]> | 2012-05-17 12:54:43 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-17 14:48:09 -0400 |
commit | 91484de22dd5143cef5f2fe7786f96abfbc795c8 (patch) | |
tree | bd907da0aa3628dc9a879c32fd8fdea70391af9e /src/gallium/drivers/radeon/R600Instructions.td | |
parent | 9a020092aedc6310d5bfc72b2aa6fc4348fe5c32 (diff) |
radeon/llvm: Remove AMDIL CMOVLOG* instruction defs
Diffstat (limited to 'src/gallium/drivers/radeon/R600Instructions.td')
-rw-r--r-- | src/gallium/drivers/radeon/R600Instructions.td | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeon/R600Instructions.td b/src/gallium/drivers/radeon/R600Instructions.td index c3643b6f967..f7fe34b7326 100644 --- a/src/gallium/drivers/radeon/R600Instructions.td +++ b/src/gallium/drivers/radeon/R600Instructions.td @@ -421,7 +421,8 @@ def SETGE_UINT : R600_2OP < def CNDE_INT : R600_3OP < 0x1C, "CNDE_INT", - [] + [(set (i32 R600_Reg32:$dst), + (IL_cmov_logical R600_Reg32:$src0, R600_Reg32:$src2, R600_Reg32:$src1))] >; /* Texture instructions */ @@ -527,9 +528,9 @@ class MULADD_Common <bits<32> inst> : R600_3OP < class CNDE_Common <bits<32> inst> : R600_3OP < inst, "CNDE", - []> { - let AMDILOp = AMDILInst.CMOVLOG_f32; -} + [(set (f32 R600_Reg32:$dst), + (IL_cmov_logical R600_Reg32:$src0, R600_Reg32:$src2, R600_Reg32:$src1))] +>; class CNDGT_Common <bits<32> inst> : R600_3OP < inst, "CNDGT", |