xref: /llvm-project/llvm/test/Linker/scalable-vector-type-construction.ll (revision f2e868c566107eb2f54e3e6033199297ba11e2d9)
1; RUN: llvm-link %p/Inputs/fixed-vector-type-construction.ll %s -S -o - | FileCheck %s
2%t = type {i32, float}
3; CHECK: define void @foo(<4 x
4; CHECK: define void @bar(<vscale x 4 x
5define void @bar(<vscale x 4 x ptr> %x) {
6  ret void
7}
8