[llvm] dca2ed3 - [LoongArch][NFC] Pre-commit tests for sign-extension removal with vectors
WANG Rui via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 5 23:03:08 PST 2024
Author: WANG Rui
Date: 2024-12-06T15:02:55+08:00
New Revision: dca2ed31278c444f839e3e04fde0c21b62451d4a
URL: https://github.com/llvm/llvm-project/commit/dca2ed31278c444f839e3e04fde0c21b62451d4a
DIFF: https://github.com/llvm/llvm-project/commit/dca2ed31278c444f839e3e04fde0c21b62451d4a.diff
LOG: [LoongArch][NFC] Pre-commit tests for sign-extension removal with vectors
Added:
Modified:
llvm/test/CodeGen/LoongArch/sextw-removal.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/LoongArch/sextw-removal.ll b/llvm/test/CodeGen/LoongArch/sextw-removal.ll
index 96853105049b43..0aeafadb9325b8 100644
--- a/llvm/test/CodeGen/LoongArch/sextw-removal.ll
+++ b/llvm/test/CodeGen/LoongArch/sextw-removal.ll
@@ -1314,4 +1314,23 @@ bb7: ; preds = %bb2
ret i32 %trunc
}
- declare void @side_effect(i64)
+declare void @side_effect(i64)
+
+declare i32 @llvm.loongarch.lsx.vpickve2gr.w(<4 x i32>, i32)
+
+define signext i32 @test20(<4 x i32> %v) {
+; CHECK-LABEL: test20:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: vpickve2gr.w $a0, $vr0, 3
+; CHECK-NEXT: addi.w $a0, $a0, 0
+; CHECK-NEXT: ret
+;
+; NORMV-LABEL: test20:
+; NORMV: # %bb.0: # %entry
+; NORMV-NEXT: vpickve2gr.w $a0, $vr0, 3
+; NORMV-NEXT: addi.w $a0, $a0, 0
+; NORMV-NEXT: ret
+entry:
+ %a = call i32 @llvm.loongarch.lsx.vpickve2gr.w(<4 x i32> %v, i32 3)
+ ret i32 %a
+}
More information about the llvm-commits
mailing list