llvm-project/llvm/test/Other/mixed-opaque-ptrs.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
171 B
LLVM
Raw Normal View History

; 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
}