blob: a67c002ee6d8ff30c5a7610ee73c53633ae7163b (
plain)
1
2
3
4
5
6
7
|
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
; CHECK: Attribute 'dead_on_unwind' applied to incompatible type!
; CHECK-NEXT: ptr @not_pointer
define void @not_pointer(i32 dead_on_unwind %arg) {
ret void
}
|