Skip to content

Commit

Permalink
fix: correct reversed callstacks (#7212)
Browse files Browse the repository at this point in the history
  • Loading branch information
guipublic authored Jan 28, 2025
1 parent faa1794 commit dc06d8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions compiler/noirc_evaluator/src/ssa/ir/call_stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ impl CallStackHelper {
result.push(self.locations[call_stack.index()].value);
call_stack = parent;
}
result.reverse();
result
}

Expand Down

0 comments on commit dc06d8e

Please sign in to comment.