1; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3; CHECK: Incorrect alignment of argument passed to called function!
4define dso_local void @foo(<8192 x float> noundef %vec) {
5entry:
6 call void @bar(<8192 x float> %vec)
7 ret void
8}
9
10declare dso_local void @bar(<8192 x float>)
11