rust/src/librustc_codegen_llvm
bors b244f61b77 Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik
Cosmetic improvements to doc comments

This has been factored out from https://github.com/rust-lang/rust/pull/58036 to only include changes to documentation comments (throughout the rustc codebase).

r? @steveklabnik

Once you're happy with this, maybe we could get it through with r=1, so it doesn't constantly get invalidated? (I'm not sure this will be an issue, but just in case...) Anyway, thanks for your advice so far!
2019-02-12 19:09:24 +00:00
..
back Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik 2019-02-12 19:09:24 +00:00
debuginfo rustc: doc comments 2019-02-10 23:42:32 +00:00
llvm rustc: doc comments 2019-02-10 23:42:32 +00:00
abi.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
allocator.rs Remove licenses 2018-12-25 21:08:33 -07:00
asm.rs Remove licenses 2018-12-25 21:08:33 -07:00
attributes.rs Resolve breakage 2019-01-25 19:20:38 +02:00
base.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
builder.rs Remove licenses 2018-12-25 21:08:33 -07:00
callee.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
Cargo.toml Add rustc_codegen_ssa to sysroot 2018-11-22 20:20:23 +01:00
common.rs Remove licenses 2018-12-25 21:08:33 -07:00
consts.rs Remove licenses 2018-12-25 21:08:33 -07:00
context.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
declare.rs Resolve breakage 2019-01-25 19:20:38 +02:00
diagnostics.rs Remove licenses 2018-12-25 21:08:33 -07:00
intrinsic.rs Use LLVM intrinsics for saturating add/sub 2019-01-29 22:32:13 +01:00
lib.rs Remove images' url to make it work even without internet connection 2019-02-07 11:06:19 +01:00
llvm_util.rs Add MOVBE feature 2019-01-30 21:07:48 +05:30
metadata.rs Remove licenses 2018-12-25 21:08:33 -07:00
mono_item.rs Remove licenses 2018-12-25 21:08:33 -07:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
type_.rs Use ptr::eq where applicable 2019-01-12 16:18:55 +01:00
type_of.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
va_arg.rs Remove licenses 2018-12-25 21:08:33 -07:00
value.rs Use ptr::eq where applicable 2019-01-12 16:18:55 +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.