Update mem2reg test

This commit is contained in:
Jeehoon Kang
2020-04-24 02:01:07 +00:00
parent 7c53818f73
commit 61b2162408
4 changed files with 252 additions and 29 deletions

View File

@@ -321,7 +321,7 @@ impl fmt::Display for JumpArg {
self.bid,
self.args
.iter()
.map(|a| a.to_string())
.map(|a| format!("{}:{}", a, a.dtype()))
.collect::<Vec<_>>()
.join(", ")
)