rust/compiler/rustc_codegen_llvm
bjorn3 62cf644c64 Merge apply_attrs_callsite into call and invoke
Some codegen backends are not able to apply callsite attrs after the fact.
2022-10-01 17:01:31 +00:00
..
src Merge apply_attrs_callsite into call and invoke 2022-10-01 17:01:31 +00:00
Cargo.toml Remove support for LLVM's legacy pass manager 2022-09-18 13:25:49 -07: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.