mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-22 11:23:27 +08:00
this also fixes passing of params > 16 bytes. In riscv they aren't passed by value on stack, but via reference (and because callees are allowed to modify by-ref params the caller must allocate an own copy per call). This fixes the stdarg parts of 73_arm.c.