rust/tests/run-make/cross-lang-lto-riscv-abi/cstart.c
kxxt f19c48e7a8 Set target-abi module flag for RISC-V targets
Fixes cross-language LTO on RISC-V targets (Fixes #121924)
2024-04-09 05:25:51 +02:00

6 lines
53 B
C

extern void hello();
void _start() {
hello();
}