blob: e3c9ac8e443c70b93d822adf95bc906ece9f3ca6 [file] [edit]
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
define void @missing_attribute() {
entry:
; CHECK: @llvm.structured.alloca calls require elementtype attribute.
%ptr = call ptr @llvm.structured.alloca()
ret void
}