Files
rust/src/librustc_codegen_llvm
bors 21f2684950 Auto merge of #56198 - bjorn3:cg_ssa_refactor, r=eddyb
Refactor rustc_codegen_ssa

cc #56108 (not all things are done yet)

This removes an unsafe method from cg_ssa.

r? @eddyb
cc @sunfishcode
2018-12-02 18:02:20 +00:00
..
2018-11-22 20:20:23 +01:00
2018-11-13 14:45:31 -05:00
2018-11-26 15:03:13 -06:00
2018-11-29 18:19:41 +01: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.