7 lines
221 B
LLVM
7 lines
221 B
LLVM
; 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
|
|
}
|