OLD | NEW |
---|---|
(Empty) | |
1 ; RUN: not opt < %s -simplify-struct-reg-signatures -S | |
2 | |
3 %struct = type { i32, i32 } | |
4 | |
5 declare void @vararg_fct(...) | |
6 | |
7 define void @vararg_caller_with_agg(%struct %str) { | |
8 call void(...)* @vararg_fct(%struct %str) | |
9 ret void | |
10 } | |
OLD | NEW |