Skip to content

Commit

Permalink
[FIX] fixing #9
Browse files Browse the repository at this point in the history
  • Loading branch information
Cr0a3 committed Aug 23, 2024
1 parent 59dd27d commit c121ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IR/ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ impl Ir for Call<Function, Vec<Var>, Var> {
let mut fmt = String::new();

for arg in &self.inner2 {
fmt.push_str(&format!("{}", arg))
fmt.push_str(&format!("{} ", arg))
}

format!("{} = call {} {} {}", self.inner3.name, self.inner1.ty.ret, self.inner1.name, fmt)
Expand Down

0 comments on commit c121ec8

Please sign in to comment.