mirror of https://github.com/rust-lang/rust.git
defef8658e
Use the `Align` type when parsing alignment attributes Use the `Align` type in `rustc_attr::parse_alignment`, removing the need to call `Align::from_bytes(...).unwrap()` later in the compilation process. |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md | ||
messages.ftl |
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.