Merge pull request #437 from rust-lang/dummy-emit-ir
Implement dummy emit=llvm-ir
This commit is contained in:
commit
77b980451d
2 changed files with 3 additions and 1 deletions
1
.ignore
1
.ignore
|
|
@ -8,3 +8,4 @@
|
|||
!*gimple*
|
||||
!*asm*
|
||||
!.github
|
||||
!config.toml
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue