[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / Verifier / inalloca3.ll
blobd0bb6ec3e7eb660cc30641d7360c590237c2cc20
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
4 declare void @doit(ptr inalloca(i64) %a)
6 define void @a() {
7 entry:
8   %a = alloca [2 x i32]
9   call void @doit(ptr inalloca(i64) %a)
10 ; CHECK: inalloca argument for call has mismatched alloca
11   ret void