rust/src/librustc_codegen_llvm
Alex Crichton b7ef674832 rustc: Use link_section, not wasm_custom_section
This commit transitions definitions of custom sections on the wasm target from
the unstable `#[wasm_custom_section]` attribute to the
already-stable-for-other-targets `#[link_section]` attribute. Mostly the same
restrictions apply as before, except that this now applies only to statics.

Closes #51088
2018-07-16 09:40:45 -07:00
..
2018-07-16 15:09:17 +02:00
2018-07-13 17:22:23 -05:00
2018-07-09 09:40:16 +02:00
2018-07-16 15:09:16 +02:00
2018-07-16 15:09:16 +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.