We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 649b995 commit 44e8c43Copy full SHA for 44e8c43
compiler/rustc_codegen_llvm/src/back/write.rs
@@ -769,12 +769,9 @@ pub(crate) unsafe fn codegen(
769
}
770
771
772
- // Two things to note:
773
- // - If object files are just LLVM bitcode we write bitcode, copy it to
774
- // the .o file, and delete the bitcode if it wasn't otherwise
775
- // requested.
776
- // - If we don't have the integrated assembler then we need to emit
777
- // asm from LLVM and use `gcc` to create the object file.
+ // Note that if object files are just LLVM bitcode we write bitcode,
+ // copy it to the .o file, and delete the bitcode if it wasn't
+ // otherwise requested.
778
779
let bc_out = cgcx.output_filenames.temp_path(OutputType::Bitcode, module_name);
780
let bc_summary_out =
0 commit comments