8 lines
192 B
LLVM
8 lines
192 B
LLVM
|
; RUN: not opt -passes=verify < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
; CHECK: Attribute 'inalloca' does not support unsized types!
|
||
|
; CHECK-NEXT: ptr @f
|
||
|
define void @f(ptr inalloca(token)) {
|
||
|
ret void
|
||
|
}
|