rust/compiler/rustc_codegen_llvm
Matthias Krüger fc4464bf7b
Rollup merge of #150094 - more-va-arg, r=workingjubilee
`c_variadic`: provide our own `va_arg` implementation for more targets

tracking issue: https://github.com/rust-lang/rust/issues/44930

Provide our own implementations in order to guarantee the behavior of `va_arg`. We will only be able to stabilize `c_variadic` on targets where we know and guarantee the properties of `va_arg`.

r? workingjubilee
2026-01-08 16:25:28 +01:00
..
src Rollup merge of #150094 - more-va-arg, r=workingjubilee 2026-01-08 16:25:28 +01:00
Cargo.toml Removes the serde dependency in rustc_codegen_llvm 2025-12-28 15:52:20 +08:00
messages.ftl Modified to output error messages appropriate to the situation 2026-01-07 00:33:57 +09:00
README.md mv compiler to compiler/ 2020-08-30 18:45:07 +03:00

The codegen crate contains the code to convert from MIR into LLVM IR, and then from LLVM IR into machine code. In general it contains code that runs towards the end of the compilation process.

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