rust/src/librustc_target
Samuel Holland e648aa8e89 Fix C aggregate-passing ABI on powerpc
The existing code (which looks like it was copied from MIPS) passes
aggregates by value in registers. This is wrong. According to the SVR4
powerpc psABI, all aggregates are passed indirectly.

See #64259 for more discussion, which addresses the ABI for the special
case of ZSTs (empty structs).
2019-11-05 20:23:58 -06:00
..
abi Fix C aggregate-passing ABI on powerpc 2019-11-05 20:23:58 -06:00
spec Allow specifying key "llvm-abiname" in target specification 2019-10-29 21:12:05 -07:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Update bitflags 2019-10-25 23:26:27 +01:00
lib.rs Deny unused_lifetimes through rustbuild 2019-07-28 18:47:02 +03:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00

librustc_target contains some very low-level details that are specific to different compilation targets and so forth.

For more information about how rustc works, see the rustc guide.