about summary refs log tree commit diff
path: root/src/test/codegen/abi-x86_64_sysv.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-29/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2018-02-08Fix oversized loads on x86_64 SysV FFI callsBjörn Steinbrink-0/+39
The x86_64 SysV ABI should use exact sizes for small structs passed in registers, i.e. a struct that occupies 3 bytes should use an i24, instead of the i32 it currently uses. Refs #45543