diff options
author | Tom Stellard <[email protected]> | 2012-05-23 14:58:34 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-24 14:12:31 -0400 |
commit | dd9927eb36614eccbc48b316befe6a3e37644694 (patch) | |
tree | 95d7350ffa1b088def40e3bfbf7c04693ef0abc9 /src/gallium/drivers/radeon/R600Instructions.td | |
parent | 1404e6b9fcc6ff4f962cafa8d81226dff5fef54d (diff) |
radeon/llvm: Remove AMDIL ADD instructions
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 c8db9380571..4737f1ca9f4 100644 --- a/src/gallium/drivers/radeon/R600Instructions.td +++ b/src/gallium/drivers/radeon/R600Instructions.td @@ -410,9 +410,8 @@ def NOT_INT : R600_1OP < def ADD_INT : R600_2OP < 0x34, "ADD_INT", - []>{ - let AMDILOp = AMDILInst.ADD_i32; -} + [(set R600_Reg32:$dst, (add R600_Reg32:$src0, R600_Reg32:$src1))] +>; def SUB_INT : R600_2OP < 0x35, "SUB_INT", |