summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll')
-rw-r--r--llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll32
1 files changed, 23 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll b/llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll
index b37b525981fd..4a9d2579766b 100644
--- a/llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll
+++ b/llvm/test/CodeGen/LoongArch/lasx/ir-instruction/insert-bitcast-element.ll
@@ -1,11 +1,18 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
-; RUN: llc --mtriple=loongarch64 --mattr=+lasx < %s | FileCheck %s
+; RUN: llc --mtriple=loongarch32 --mattr=+32s,+lasx < %s | FileCheck %s --check-prefix=LA32
+; RUN: llc --mtriple=loongarch64 --mattr=+lasx < %s | FileCheck %s --check-prefix=LA64
define <8 x float> @insert_bitcast_v8f32(<8 x float> %a, i32 %b) nounwind {
-; CHECK-LABEL: insert_bitcast_v8f32:
-; CHECK: # %bb.0: # %entry
-; CHECK-NEXT: xvinsgr2vr.w $xr0, $a0, 1
-; CHECK-NEXT: ret
+; LA32-LABEL: insert_bitcast_v8f32:
+; LA32: # %bb.0: # %entry
+; LA32-NEXT: movgr2fr.w $fa1, $a0
+; LA32-NEXT: xvinsve0.w $xr0, $xr1, 1
+; LA32-NEXT: ret
+;
+; LA64-LABEL: insert_bitcast_v8f32:
+; LA64: # %bb.0: # %entry
+; LA64-NEXT: xvinsgr2vr.w $xr0, $a0, 1
+; LA64-NEXT: ret
entry:
%c = bitcast i32 %b to float
%d = insertelement <8 x float> %a, float %c, i32 1
@@ -13,10 +20,17 @@ entry:
}
define <4 x double> @insert_bitcast_v4f64(<4 x double> %a, i64 %b) nounwind {
-; CHECK-LABEL: insert_bitcast_v4f64:
-; CHECK: # %bb.0: # %entry
-; CHECK-NEXT: xvinsgr2vr.d $xr0, $a0, 1
-; CHECK-NEXT: ret
+; LA32-LABEL: insert_bitcast_v4f64:
+; LA32: # %bb.0: # %entry
+; LA32-NEXT: movgr2fr.w $fa1, $a0
+; LA32-NEXT: movgr2frh.w $fa1, $a1
+; LA32-NEXT: xvinsve0.d $xr0, $xr1, 1
+; LA32-NEXT: ret
+;
+; LA64-LABEL: insert_bitcast_v4f64:
+; LA64: # %bb.0: # %entry
+; LA64-NEXT: xvinsgr2vr.d $xr0, $a0, 1
+; LA64-NEXT: ret
entry:
%c = bitcast i64 %b to double
%d = insertelement <4 x double> %a, double %c, i32 1