rust/compiler/rustc_codegen_llvm
Stuart Cook f9d6cb5622
Rollup merge of #150036 - Urgau:filenames-coverage-150020, r=Zalathar
Use the embeddable filename for coverage artifacts

Like debuginfo, coverage artifacts should use the embeddable path (aka absolute path).

Unfortunately due to `coverage-run` and `compiletest`, I'm unable to create a reproducer in our test-suite, but when manually invoking `rustc` with the reproducer (https://github.com/rust-lang/rust/issues/150020#issuecomment-3657097712) I think the issue is fixed.

Fixes https://github.com/rust-lang/rust/issues/150020
r? Zalathar
2025-12-16 14:40:48 +11:00
..
src Rollup merge of #150036 - Urgau:filenames-coverage-150020, r=Zalathar 2025-12-16 14:40:48 +11:00
Cargo.toml add trailing line at compiler/rustc_codegen_llvm/Cargo.toml 2025-12-16 00:32:26 +09:00
messages.ftl Implement offload intrinsic 2025-11-25 20:04:27 +01:00
README.md mv compiler to compiler/ 2020-08-30 18:45:07 +03: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 dev guide.