File tree Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change 217217
218218#define FJUMPMACRO (x ) \
219219 do { \
220- if (TOPOFSTACK != 0) { goto PopNextop1 ; } \
220+ if (TOPOFSTACK != 0) { POP; nextop1 ; } \
221221 { \
222222 CHECK_INTERRUPT; \
223223 POP; \
227227 } while (0)
228228#define TJUMPMACRO (x ) \
229229 do { \
230- if (TOPOFSTACK == 0) { goto PopNextop1 ; } \
230+ if (TOPOFSTACK == 0) { POP; nextop1 ; } \
231231 { \
232232 CHECK_INTERRUPT; \
233233 POP; \
Original file line number Diff line number Diff line change @@ -814,7 +814,7 @@ op_ufn : {
814814 /******* FJumpx *******/
815815 case 0262 :
816816 case262 : {
817- if (TOPOFSTACK != 0 ) { goto PopNextop2 ; }
817+ if (TOPOFSTACK != 0 ) { POP ; nextop2 ; }
818818 CHECK_INTERRUPT ;
819819 POP ;
820820 PCMACL += Get_SBYTE_PCMAC1 ;
@@ -825,7 +825,7 @@ op_ufn : {
825825
826826 case 0263 :
827827 case263 : {
828- if (TOPOFSTACK == 0 ) { goto PopNextop2 ; }
828+ if (TOPOFSTACK == 0 ) { POP ; nextop2 ; }
829829 CHECK_INTERRUPT ;
830830 POP ;
831831 PCMACL += Get_SBYTE_PCMAC1 ;
@@ -836,7 +836,7 @@ op_ufn : {
836836
837837 case 0264 :
838838 case264 : {
839- if (TOPOFSTACK != 0 ) { goto PopNextop2 ; }
839+ if (TOPOFSTACK != 0 ) { POP ; nextop2 ; }
840840 CHECK_INTERRUPT ;
841841 PCMACL += Get_SBYTE_PCMAC1 ;
842842 nextop0 ;
@@ -846,7 +846,7 @@ op_ufn : {
846846
847847 case 0265 :
848848 case265 : {
849- if (TOPOFSTACK == 0 ) { goto PopNextop2 ; }
849+ if (TOPOFSTACK == 0 ) { POP ; nextop2 ; }
850850 CHECK_INTERRUPT ;
851851 PCMACL += Get_SBYTE_PCMAC1 ;
852852 nextop0 ;
@@ -1261,19 +1261,7 @@ op_ufn : {
12611261 }
12621262 }
12631263 }
1264-
12651264 nextop0 ;
1266-
1267- /************************************************************************/
1268- /* Common Jump Tails (they have to jump anyway, so use common Tail) */
1269- /************************************************************************/
1270- PopNextop1 :
1271- POP ;
1272- nextop1 ;
1273-
1274- PopNextop2 :
1275- POP ;
1276- nextop2 ;
12771265}
12781266
12791267void do_brk (void ) {}
You can’t perform that action at this time.
0 commit comments