diff options
author | Tom Stellard <[email protected]> | 2012-07-26 08:41:00 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-27 17:08:09 +0000 |
commit | ee0f0f03c6c174a160e5fb3882ec5c03cdfcd163 (patch) | |
tree | def5f21814a5bab13df7c6343a1e96bce2bcad02 /src/gallium/drivers/radeon/SIInstrFormats.td | |
parent | d4bdd09d4714ae51b9f5675f7f5c678d431061e8 (diff) |
radeon/llvm: Fix VOPC and V_CNDMASK encoding
Diffstat (limited to 'src/gallium/drivers/radeon/SIInstrFormats.td')
-rw-r--r-- | src/gallium/drivers/radeon/SIInstrFormats.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/SIInstrFormats.td b/src/gallium/drivers/radeon/SIInstrFormats.td index 3d9d47489d7..8f56e21f5a6 100644 --- a/src/gallium/drivers/radeon/SIInstrFormats.td +++ b/src/gallium/drivers/radeon/SIInstrFormats.td @@ -100,7 +100,7 @@ class SOPK_64 <bits<5> op, string opName, list<dag> pattern> class VOPC_Helper <bits<8> op, RegisterClass vrc, RegisterClass arc, string opName, list<dag> pattern> : VOPC < - op, (outs), (ins arc:$src0, vrc:$src1), opName, pattern + op, (ins arc:$src0, vrc:$src1), opName, pattern >; multiclass VOPC_32 <bits<8> op, string opName, list<dag> pattern> { |