aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Verifier/invalid-strbool-attr.ll
blob: 672c9e4e9db58683d00e702f73c3eb99e23c8d0e (plain)
1
2
3
4
5
6
7
8
9
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s

; CHECK: invalid value for 'no-jump-tables' attribute: yes

define void @func() #0 {
  ret void
}

attributes #0 = { "no-jump-tables"="yes" }