repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git]
/
llvm
/
test
/
Verifier
/
inalloca3.ll
blob
d0bb6ec3e7eb660cc30641d7360c590237c2cc20
1
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2
3
4
declare void @doit(ptr inalloca(i64) %a)
5
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
12
}