Files
rust/src/librustc_codegen_llvm
Michael Woerister 1ca145c3b5 Remove rarely used -Zdisable_instrumentation_preinliner flag.
The same effect can be achieved by `-Cllvm-args=-disable-preinline`.
2019-12-20 17:08:46 +01:00
..
2019-12-11 09:50:12 -05:00
2019-10-21 18:30:40 +11:00
2018-12-25 21:08:33 -07:00
2019-12-11 09:50:12 -05:00
2019-12-11 09:50:12 -05:00
2019-12-11 09:50:12 -05:00
2018-11-26 15:03:13 -06: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 guide.