8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
11 lines
164 B
LLVM
11 lines
164 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
|
|
%struct = type { }
|
|
|
|
declare void @foo(...)
|
|
|
|
define void @bar() {
|
|
call void (...) @foo(%struct* sret null )
|
|
ret void
|
|
}
|