DAG: Fix assuming f16 is the only 16-bit fp type in concat vector combine (#121637)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / sve-intrinsics-reinterpret-no-streaming.ll
blob3986a5a79d57daf308f2d821e2d3b8eea5ba7e1e
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s | FileCheck %s
4 ; This test should belong in sve-intrinsics-reinterpret.ll, but uses types
5 ; that are invalid with sve-streaming
7 define <vscale x 16 x i1> @reinterpret_bool_from_splat() {
8 ; CHECK-LABEL: reinterpret_bool_from_splat:
9 ; CHECK:       // %bb.0:
10 ; CHECK-NEXT:    ptrue p0.d
11 ; CHECK-NEXT:    ret
12   %out = call <vscale x 16 x i1> @llvm.aarch64.sve.convert.to.svbool.nxv2i1(<vscale x 2 x i1> splat(i1 true))
13   ret <vscale x 16 x i1> %out
16 declare <vscale x 16 x i1> @llvm.aarch64.sve.convert.to.svbool.nxv2i1(<vscale x 2 x i1>)