1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Verifier/2008-01-11-VarargAttrs.ll
2020-11-20 17:58:26 -05:00

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
}