diff options
author | Tom Stellard <[email protected]> | 2012-05-23 13:59:32 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-24 14:12:31 -0400 |
commit | ea00632fe0667766783fb66f9db5198554fee159 (patch) | |
tree | 43c02e712a4dc00684deeff46f9947c6a8b0eb95 /src/gallium/drivers/radeon/R600Instructions.td | |
parent | 0bfa3b3e9629d81a5e31c1b91fd25eab734804fa (diff) |
radeon/llvm: Remove AMDIL ROUND_NEAREST instruction
Diffstat (limited to 'src/gallium/drivers/radeon/R600Instructions.td')
-rw-r--r-- | src/gallium/drivers/radeon/R600Instructions.td | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/R600Instructions.td b/src/gallium/drivers/radeon/R600Instructions.td index e64d499e355..92e3cc112e8 100644 --- a/src/gallium/drivers/radeon/R600Instructions.td +++ b/src/gallium/drivers/radeon/R600Instructions.td @@ -373,9 +373,8 @@ def CEIL : R600_1OP < def RNDNE : R600_1OP < 0x13, "RNDNE", - [(set R600_Reg32:$dst, (int_AMDIL_round_nearest R600_Reg32:$src))]> { - let AMDILOp = AMDILInst.ROUND_NEAREST_f32; -} + [(set R600_Reg32:$dst, (frint R600_Reg32:$src))] +>; def FLOOR : R600_1OP < 0x14, "FLOOR", |