From c643bb235f8a7bdda1fb64351d1f71550c5cf191 Mon Sep 17 00:00:00 2001 From: sofia Date: Tue, 22 Jul 2025 23:49:44 +0300 Subject: [PATCH] Add production of .llir and .mir -files for LLIR and MIR --- reid/examples/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reid/examples/cli.rs b/reid/examples/cli.rs index d78b477..49d594f 100644 --- a/reid/examples/cli.rs +++ b/reid/examples/cli.rs @@ -40,7 +40,7 @@ fn main() -> Result<(), std::io::Error> { fs::write(&llir_path, &llir).expect("Could not write LLIR-file!"); println!("Output LLIR-file to {:?}\n", llir_path); fs::write(&mir_path, &mir).expect("Could not write MIR-file!"); - println!("Output MIR-file to {:?}\n", llir_path); + println!("Output MIR-file to {:?}\n", mir_path); println!( "Compilation took: {:.2}ms\n", (after.duration_since(before).unwrap().as_micros() as f32) / 1000.