diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-11-20 21:38:14 -0500 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-12-09 16:49:33 -0500 |
commit | 83729f8165895518f80f9ff550d1b1cc5353b871 (patch) | |
tree | a6202b5c8142335aef6c4add773db02e5dece587 | |
parent | f8b70ad6b853d7cbd3701c6920d575f7de891fe1 (diff) |
XXX: Select all immediates to SALUassembler
-rw-r--r-- | lib/Target/R600/SIInstructions.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/R600/SIInstructions.td b/lib/Target/R600/SIInstructions.td index 9a35a652b52..026e516d3aa 100644 --- a/lib/Target/R600/SIInstructions.td +++ b/lib/Target/R600/SIInstructions.td @@ -2549,12 +2549,12 @@ def : Pat < def : Pat < (i32 imm:$imm), - (V_MOV_B32_e32 imm:$imm) + (S_MOV_B32 imm:$imm) >; def : Pat < (f32 fpimm:$imm), - (V_MOV_B32_e32 fpimm:$imm) + (S_MOV_B32 fpimm:$imm) >; def : Pat < |