Skip to content

Commit

Permalink
fix argsnum
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Mar 1, 2024
1 parent 38e0612 commit 96e9eff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Juvix/Compiler/Casm/Data/Limits.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ casmMaxFunctionArgs = getLimits TargetCairo False ^. limitsMaxFunctionArgs
casmClosureAddrOffset :: Offset
casmClosureAddrOffset = 0

casmClosureArgsNumOffset :: Offset
casmClosureArgsNumOffset = 1

casmClosureStoredArgsOffset :: Offset
casmClosureStoredArgsOffset = 2
casmClosureStoredArgsOffset = 1

casmClosureArgsNumOffset :: Offset
casmClosureArgsNumOffset = 2

0 comments on commit 96e9eff

Please sign in to comment.