mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
3b617cbe30
allowed on the vararg arguments of a call. llvm-svn: 45909
11 lines
161 B
LLVM
11 lines
161 B
LLVM
; RUN: not llvm-as < %s -o /dev/null
|
|
|
|
%struct = type { }
|
|
|
|
declare void @foo(...)
|
|
|
|
define void @bar() {
|
|
call void (...)* @foo(%struct* sret null )
|
|
ret void
|
|
}
|