xref: /llvm-project/llvm/test/Verifier/invalid-strbool-attr.ll (revision d6de1e1a71406c75a4ea4d5a2fe84289f07ea3a1)
1; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2
3; CHECK: invalid value for 'no-jump-tables' attribute: yes
4
5define void @func() #0 {
6  ret void
7}
8
9attributes #0 = { "no-jump-tables"="yes" }
10