about summary refs log tree commit diff
path: root/src/test/codegen/c-variadic-opt.rs
AgeCommit message (Collapse)AuthorLines
2019-03-07Fix segfaults in release build C-variadic fnsDan Robertson-0/+19
`va_start` and `va_end` must be called to initialize/cleanup the "spoofed" `VaList` in a Rust defined C-variadic function even if the `VaList` is not used.