rust/src/librustc_codegen_llvm
Tom Tromey da7b6b4b4d Avoid possible integer overflow in niche value computation
@eddyb pointed out in review that the niche value computation had a
possible integer overflow problem, fixed here as he suggested.
2018-10-30 12:06:07 -06:00
..
2018-10-30 12:06:07 -06:00
2018-10-08 16:55:04 +02:00
2018-10-23 15:56:25 +02: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.