blob: af97ce6474492171044affd9e7d598722b2a710f [file] [log] [blame]
Matthijs Kooijman30a07a52008-06-10 12:57:32 +00001; RUN: not llvm-as < %s >& /dev/null
Duncan Sandsb99f44a2008-01-11 22:36:48 +00002
3 %struct = type { }
4
5declare void @foo(...)
6
7define void @bar() {
David Blaikie23af6482015-04-16 23:24:18 +00008 call void (...) @foo(%struct* sret null )
Duncan Sandsb99f44a2008-01-11 22:36:48 +00009 ret void
10}