rust/compiler/rustc_codegen_llvm
Jubilee 48667ddd5a
Rollup merge of #142179 - folkertdev:min-global-align-parse, r=workingjubilee
store `target.min_global_align` as an `Align`

Parse the alignment properly when the target is defined/parsed, and error out on invalid alignment values. That means this work doesn't need to happen for every global in each backend.
2025-06-08 17:17:56 -07:00
..
src Rollup merge of #142179 - folkertdev:min-global-align-parse, r=workingjubilee 2025-06-08 17:17:56 -07:00
Cargo.toml Bump object 2025-06-05 07:59:51 +08:00
messages.ftl store target.min_global_align as an Align 2025-06-07 22:06:42 +02:00
README.md

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.