[llvm] [AMDGPU][CodeGen] use vt in VGPRimm pattern (PR #131016)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 12:30:40 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-amdgpu
Author: Brox Chen (broxigarchen)
<details>
<summary>Changes</summary>
There seems to be a typo error introduced by https://github.com/llvm/llvm-project/commit/2033767d68ed9aabcf1ad5d2bdd7541b272a05fd
Correct this pattern to use vt
---
Full diff: https://github.com/llvm/llvm-project/pull/131016.diff
1 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/SIInstructions.td (+1-1)
``````````diff
diff --git a/llvm/lib/Target/AMDGPU/SIInstructions.td b/llvm/lib/Target/AMDGPU/SIInstructions.td
index 985337da1909d..de77401eb0137 100644
--- a/llvm/lib/Target/AMDGPU/SIInstructions.td
+++ b/llvm/lib/Target/AMDGPU/SIInstructions.td
@@ -2268,7 +2268,7 @@ foreach pred = [NotHasTrue16BitInsts, UseFakeTrue16Insts] in {
foreach vt = [f16, bf16] in {
def : GCNPat <
- (VGPRImm<(f16 fpimm)>:$imm),
+ (VGPRImm<(vt fpimm)>:$imm),
(V_MOV_B32_e32 (vt (bitcast_fpimm_to_i32 $imm)))
>;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/131016
More information about the llvm-commits
mailing list