Skip to content

Commit

Permalink
GH-18 Fix typo in extra stack checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWumpus committed Aug 29, 2024
1 parent e0f4803 commit 14b4645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/post4.c
Original file line number Diff line number Diff line change
Expand Up @@ -2808,7 +2808,7 @@ _f_store: w = P4_POP(ctx->ds);
NEXT;

// (x -- )(R: -- x )
_fs_to_rs: P4STACKISEMPTY(ctx, &ctx->ds,P4_THROW_FS_UNDER);
_fs_to_rs: P4STACKISEMPTY(ctx, &ctx->fs,P4_THROW_FS_UNDER);
w = P4_POP(ctx->P4_FLOAT_STACK);
P4STACKISFULL(ctx, &ctx->rs, P4_THROW_RS_OVER);
P4_PUSH(ctx->rs, w);
Expand Down

0 comments on commit 14b4645

Please sign in to comment.