rust/compiler/rustc_codegen_llvm
Guillaume Gomez 039b1b62ac
Rollup merge of #82456 - klensy:or-else, r=estebank
Replaced some unwrap_or and map_or with lazy variants

Replaced some `unwrap_or` and `map_or` with `unwrap_or_else` and `map_or_else`.
2021-02-26 15:52:31 +01:00
..
src Rollup merge of #82456 - klensy:or-else, r=estebank 2021-02-26 15:52:31 +01:00
Cargo.toml bumped smallvec deps 2021-02-14 18:03:11 +03:00
README.md

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 dev guide.