rust/src/librustc_codegen_llvm
Mazdak Farrokhzad 6351267c1f
Rollup merge of #61231 - pnkfelix:issue-59548-linkage-diagnostic, r=petrochenkov
Fix linkage diagnostic so it doesn't ICE for external crates

Fix linkage diagnostic so it doesn't ICE for external crates

(As a drive-by improvement, improved the diagnostic to indicate *why* `*const T` or `*mut T` is required.)

Fix #59548
Fix #61232
2019-05-30 10:52:53 +02:00
..
2019-04-18 15:28:18 -07:00
2019-05-14 21:23:01 +05:30
2019-03-29 17:17:13 +01:00
2019-05-14 21:23:01 +05:30
2019-05-14 15:20:29 +05:30
2019-04-22 16:57:01 +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.