repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Verifier
/
inalloca-vararg.ll
blob
428f89ec88f10238279b14dc0a45d88ebb8cd933
1
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2
3
declare void @h(i32, ...)
4
define void @i() {
5
%args = alloca inalloca i32
6
call void (i32, ...) @h(i32 1, i32* inalloca %args, i32 3)
7
; CHECK: inalloca isn't on the last argument!
8
ret void
9
}