[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / Mips / GlobalISel / llvm-ir / fsqrt_vec.ll
blob27bbb9aa59c86d699c40d80608c816c5bc509fbf
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -mcpu=mips32r5 -mattr=+msa,+fp64,+nan2008 -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=P5600
4 declare <4 x float>  @llvm.sqrt.v4f32(<4 x float>  %Val)
5 define void @sqrt_v4f32(<4 x float>* %a, <4 x float>* %c) {
6 ; P5600-LABEL: sqrt_v4f32:
7 ; P5600:       # %bb.0: # %entry
8 ; P5600-NEXT:    ld.w $w0, 0($4)
9 ; P5600-NEXT:    fsqrt.w $w0, $w0
10 ; P5600-NEXT:    st.w $w0, 0($5)
11 ; P5600-NEXT:    jr $ra
12 ; P5600-NEXT:    nop
13 entry:
14   %0 = load <4 x float>, <4 x float>* %a, align 16
15   %sqrt = call <4 x float> @llvm.sqrt.v4f32 (<4 x float> %0)
16   store <4 x float> %sqrt, <4 x float>* %c, align 16
17   ret void
20 declare <2 x double> @llvm.sqrt.v2f64(<2 x double> %Val)
21 define void @sqrt_v2f64(<2 x double>* %a, <2 x double>* %c) {
22 ; P5600-LABEL: sqrt_v2f64:
23 ; P5600:       # %bb.0: # %entry
24 ; P5600-NEXT:    ld.d $w0, 0($4)
25 ; P5600-NEXT:    fsqrt.d $w0, $w0
26 ; P5600-NEXT:    st.d $w0, 0($5)
27 ; P5600-NEXT:    jr $ra
28 ; P5600-NEXT:    nop
29 entry:
30   %0 = load <2 x double>, <2 x double>* %a, align 16
31   %sqrt = call <2 x double> @llvm.sqrt.v2f64 (<2 x double> %0)
32   store <2 x double> %sqrt, <2 x double>* %c, align 16
33   ret void