blob: 1b67cf48474bca3e936a9b21dbb837280eb3c460 [file] [log] [blame]
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
; CHECK: ptr type is only supported in -opaque-pointers mode
define void @f(i32*) {
%a = alloca ptr
ret void
}