brintos

brintos / llvm-project-archived public Read only

0
0
Text · 940 B · 4669f2c Raw
28 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc --mtriple=loongarch32 --mattr=+32s,+lasx < %s | FileCheck %s3; RUN: llc --mtriple=loongarch64 --mattr=+lasx < %s | FileCheck %s4 5declare <8 x float> @llvm.loongarch.lasx.xvfsqrt.s(<8 x float>)6 7define <8 x float> @lasx_xvfsqrt_s(<8 x float> %va) nounwind {8; CHECK-LABEL: lasx_xvfsqrt_s:9; CHECK:       # %bb.0: # %entry10; CHECK-NEXT:    xvfsqrt.s $xr0, $xr011; CHECK-NEXT:    ret12entry:13  %res = call <8 x float> @llvm.loongarch.lasx.xvfsqrt.s(<8 x float> %va)14  ret <8 x float> %res15}16 17declare <4 x double> @llvm.loongarch.lasx.xvfsqrt.d(<4 x double>)18 19define <4 x double> @lasx_xvfsqrt_d(<4 x double> %va) nounwind {20; CHECK-LABEL: lasx_xvfsqrt_d:21; CHECK:       # %bb.0: # %entry22; CHECK-NEXT:    xvfsqrt.d $xr0, $xr023; CHECK-NEXT:    ret24entry:25  %res = call <4 x double> @llvm.loongarch.lasx.xvfsqrt.d(<4 x double> %va)26  ret <4 x double> %res27}28