[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / Verifier / param-attr-align.ll
blob038bfa3494f8984ed726e209ec756c181ce119f1
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
3 ; CHECK: Attribute 'align' exceed the max size 2^14
4 define dso_local void @foo(ptr %p) {
5 entry:
6   call void @bar(ptr noundef byval(<8 x float>) align 32768 %p)
7   ret void
10 declare dso_local void @bar(ptr %p)