Makes it more likely that all loop operations are in the cache
at the same time.
#ifdef CASE_TOO_BIG
default: switch (opcode) {
#endif
- case BREAK_LOOP:
- why = WHY_BREAK;
- goto fast_block_end;
-
- case CONTINUE_LOOP:
- retval = PyInt_FromLong(oparg);
- why = WHY_CONTINUE;
- goto fast_block_end;
-
case RAISE_VARARGS:
u = v = w = NULL;
switch (oparg) {
JUMPBY(oparg);
continue;
+ case BREAK_LOOP:
+ why = WHY_BREAK;
+ goto fast_block_end;
+
+ case CONTINUE_LOOP:
+ retval = PyInt_FromLong(oparg);
+ why = WHY_CONTINUE;
+ goto fast_block_end;
+
case SETUP_LOOP:
case SETUP_EXCEPT:
case SETUP_FINALLY: