Compare commits

..

No commits in common. "691c91504bc4d3c9d5f878c1611211d83eda5967" and "b39b829061fa504b3dcb869b37efe47650085aa5" have entirely different histories.

17 changed files with 1 additions and 1 deletions

View File

@ -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", mir_path);
println!("Output MIR-file to {:?}\n", llir_path);
println!(
"Compilation took: {:.2}ms\n",
(after.duration_since(before).unwrap().as_micros() as f32) / 1000.