xref: /llvm-project/llvm/test/Assembler/call-invalid-1.ll (revision 7b7d3b20ffec9f0af0534178117a7e0c250f6a79)
1; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2
3declare void @f()
4
5define void @g() {
6  call void @f() align 8
7; CHECK: Attribute 'align 8' does not apply to functions!
8  ret void
9}
10