Skip to content

Commit

Permalink
typo in APP and SUP cases
Browse files Browse the repository at this point in the history
  • Loading branch information
o-santi committed Nov 18, 2022
1 parent af30614 commit 2378310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kindelia_core/src/hvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1705,11 +1705,11 @@ impl Runtime {
},
CellTag::APP => {
recursive_locs.push(term.get_loc(0));
recursive_locs.push(term.get_loc(0));
recursive_locs.push(term.get_loc(1));
},
CellTag::SUP => {
recursive_locs.push(term.get_loc(0));
recursive_locs.push(term.get_loc(0));
recursive_locs.push(term.get_loc(1));
},
CellTag::CTR | CellTag::FUN => {
let name = term.get_name_from_ext();
Expand Down

0 comments on commit 2378310

Please sign in to comment.