rust/src/librustc_codegen_llvm
bors fc07615c49 Auto merge of #68601 - 0dvictor:split, r=tmandry
Split `join_codegen_and_link()` into two steps

`join_codegen_and_link()` is split to `join_codegen()` and `link()`.
2020-02-04 05:48:54 +00:00
..
2019-12-22 17:42:47 -05:00
2019-12-22 17:42:47 -05:00
2019-12-22 17:42:47 -05:00
2020-01-11 10:18:44 +00:00
2019-12-22 17:42:47 -05:00
2019-12-22 17:42:47 -05:00
2019-12-22 17:42:47 -05:00
2019-12-22 17:42:47 -05: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.