add instname flag to debugir

This commit is contained in:
Folkert 2021-06-23 14:05:23 +02:00
parent d2fe546803
commit 5ed33da026

View file

@ -193,7 +193,7 @@ pub fn gen_from_mono_module(
// run the debugir https://github.com/vaivaswatha/debugir tool // run the debugir https://github.com/vaivaswatha/debugir tool
match Command::new("debugir") match Command::new("debugir")
.env_clear() .env_clear()
.args(&[app_ll_file.to_str().unwrap()]) .args(&["-instnamer", app_ll_file.to_str().unwrap()])
.output() .output()
{ {
Ok(_) => {} Ok(_) => {}