Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Thumb2 / mve-intrinsics / vcls.ll
blob788bf32a2fb78c83ae8bfe56392c2b36d767ff1d
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=thumbv8.1m.main -mattr=+mve.fp -verify-machineinstrs -o - %s | FileCheck %s
4 define arm_aapcs_vfpcc <16 x i8> @test_vclsq_s8(<16 x i8> %a) {
5 ; CHECK-LABEL: test_vclsq_s8:
6 ; CHECK:       @ %bb.0: @ %entry
7 ; CHECK-NEXT:    vcls.s8 q0, q0
8 ; CHECK-NEXT:    bx lr
9 entry:
10   %0 = tail call <16 x i8> @llvm.arm.mve.vcls.v16i8(<16 x i8> %a)
11   ret <16 x i8> %0
14 define arm_aapcs_vfpcc <8 x i16> @test_vclsq_s16(<8 x i16> %a) {
15 ; CHECK-LABEL: test_vclsq_s16:
16 ; CHECK:       @ %bb.0: @ %entry
17 ; CHECK-NEXT:    vcls.s16 q0, q0
18 ; CHECK-NEXT:    bx lr
19 entry:
20   %0 = tail call <8 x i16> @llvm.arm.mve.vcls.v8i16(<8 x i16> %a)
21   ret <8 x i16> %0
24 define arm_aapcs_vfpcc <4 x i32> @test_vclsq_s32(<4 x i32> %a) {
25 ; CHECK-LABEL: test_vclsq_s32:
26 ; CHECK:       @ %bb.0: @ %entry
27 ; CHECK-NEXT:    vcls.s32 q0, q0
28 ; CHECK-NEXT:    bx lr
29 entry:
30   %0 = tail call <4 x i32> @llvm.arm.mve.vcls.v4i32(<4 x i32> %a)
31   ret <4 x i32> %0
34 declare <16 x i8> @llvm.arm.mve.vcls.v16i8(<16 x i8>)
35 declare <8 x i16> @llvm.arm.mve.vcls.v8i16(<8 x i16>)
36 declare <4 x i32> @llvm.arm.mve.vcls.v4i32(<4 x i32>)