about summary refs log tree commit diff
path: root/src/test/codegen/c-variadic-opt.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-30/+0
2019-06-17Expose `VaListImpl` as the Rust equivalent of `__va_list_tag` and implement ↵Andrei Homescu-2/+13
Clone for it.
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.