Files
rust/src/librustc_codegen_llvm
Tyler Mandry 69598dc3cf Rollup merge of #65151 - tmandry:revert-emscripten-upgrade, r=tmandry
Revert #63649 - "Upgrade Emscripten targets to use upstream LLVM backend"

This change caused the runtime of the linux-asmjs builder to nearly double from 2+ hours to about 4 hours, which happens to be the bors timeout. (It made it in barely under 4 hours when it was merged.) This is causing timeouts on all new changes.

This reverts commit 7870050796, reversing
changes made to 2e7244807a.
2019-10-05 21:55:13 -07:00
..
2018-12-25 21:08:33 -07:00
2019-09-26 12:10:43 +01:00
2019-07-09 21:55:29 +02:00
2019-09-25 15:50:04 +01:00
2019-07-07 09:32:36 +02:00
2018-11-26 15:03:13 -06:00
2019-10-04 20:47:43 +08: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.