diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/VIInstructions.td')
-rw-r--r-- | llvm/lib/Target/AMDGPU/VIInstructions.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/AMDGPU/VIInstructions.td b/llvm/lib/Target/AMDGPU/VIInstructions.td index 4b8ce6487fe..ddd164b9112 100644 --- a/llvm/lib/Target/AMDGPU/VIInstructions.td +++ b/llvm/lib/Target/AMDGPU/VIInstructions.td @@ -121,10 +121,10 @@ def : Pat < //===----------------------------------------------------------------------===// def : Pat < - (int_amdgcn_mov_dpp i32:$src, imm:$dpp_ctrl, imm:$bound_ctrl, - imm:$bank_mask, imm:$row_mask), - (V_MOV_B32_dpp $src, (as_i32imm $dpp_ctrl), (as_i1imm $bound_ctrl), - (as_i32imm $bank_mask), (as_i32imm $row_mask)) + (int_amdgcn_mov_dpp i32:$src, imm:$dpp_ctrl, imm:$row_mask, imm:$bank_mask, + imm:$bound_ctrl), + (V_MOV_B32_dpp $src, (as_i32imm $dpp_ctrl), (as_i32imm $row_mask), + (as_i32imm $bank_mask), (as_i1imm $bound_ctrl)) >; //===----------------------------------------------------------------------===// |