mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
fix msvc asm bug
This commit is contained in:
parent
f0f6a6a4fb
commit
9864fb13cc
@ -104,7 +104,9 @@ PyVar VM::__run_top_frame(){
|
|||||||
if(!_next_breakpoint.empty()) { _next_breakpoint._step(this); }
|
if(!_next_breakpoint.empty()) { _next_breakpoint._step(this); }
|
||||||
#else
|
#else
|
||||||
#define CEVAL_STEP_CALLBACK() \
|
#define CEVAL_STEP_CALLBACK() \
|
||||||
if(_ceval_on_step) _ceval_on_step(this, frame, byte);
|
if(_ceval_on_step){ \
|
||||||
|
if(_ceval_on_step) _ceval_on_step(this, frame, byte); \
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DISPATCH() goto __NEXT_STEP;
|
#define DISPATCH() goto __NEXT_STEP;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user