xref: /llvm-project/llvm/test/Verifier/noundef.ll (revision 5e4b33fe9218703f0b29e2446159bcf4202d15fa)
1; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2
3; CHECK: Attribute 'noundef' applied to incompatible type!
4; CHECK-NEXT: @noundef_void
5define noundef void @noundef_void() {
6  ret void
7}
8