11 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2 3; CHECK: huge alignments are not supported yet4define dso_local void @foo(ptr %p) {5entry:6 call void @bar(ptr noundef byval(<8 x float>) align 8589934592 %p)7 ret void8}9 10declare dso_local void @bar(ptr %p)11