rust/compiler/rustc_codegen_llvm
Michael Benfield 1a08b96a0b Change name of "dataful" variant to "untagged"
This is in anticipation of a new enum layout, in which the niche
optimization may be applied even when multiple variants have data.
2022-09-07 20:12:45 +00:00
..
src Change name of "dataful" variant to "untagged" 2022-09-07 20:12:45 +00:00
Cargo.toml Use object instead of LLVM for reading bitcode from rlibs 2022-07-25 16:07:23 +00: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.