Merge pull request #437 from rust-lang/dummy-emit-ir

Implement dummy emit=llvm-ir
This commit is contained in:
antoyo
2024-02-14 12:27:14 -05:00
committed by GitHub
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -8,3 +8,4 @@
!*gimple*
!*asm*
!.github
!config.toml
+2 -1
View File
@@ -70,7 +70,8 @@ pub(crate) unsafe fn codegen(cgcx: &CodegenContext<GccCodegenBackend>, diag_hand
}
if config.emit_ir {
unimplemented!();
let out = cgcx.output_filenames.temp_path(OutputType::LlvmAssembly, module_name);
std::fs::write(out, "").expect("write file");
}
if config.emit_asm {