mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
11 lines
172 B
LLVM
11 lines
172 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
|
|
%struct = type { }
|
|
|
|
declare void @foo(...)
|
|
|
|
define void @bar() {
|
|
call void (...) @foo(%struct* sret(%struct) null )
|
|
ret void
|
|
}
|