xref: /llvm-project/llvm/test/Bitcode/vscale-shuffle.ll (revision 56c091ea7106507b36015297ee9005c9d5fab0bf)
1; RUN: llvm-as < %s | llvm-dis -disable-output
2; RUN: verify-uselistorder < %s
3
4define void @f() {
5  %l = call <vscale x 16 x i8> @l(<vscale x 16 x i1> splat (i1 true))
6  %i = add <vscale x 2 x i64> undef, splat (i64 1)
7  unreachable
8}
9
10declare <vscale x 16 x i8> @l(<vscale x 16 x i1>)
11