Author: petdance
Date: Fri Jul 6 16:48:09 2007
New Revision: 19658
Modified:
trunk/src/exceptions.c
Log:
Fixed ugly bug: offset was stomping on itself because of break fall-thru. I
wonder if this fixes anything.
Modified: trunk/src/exceptions.c
==============================================================================
--- trunk/src/exceptions.c (original)
+++ trunk/src/exceptions.c Fri Jul 6 16:48:09 2007
@@ -491,6 +491,7 @@
case PARROT_CGP_CORE:
case PARROT_CGP_JIT_CORE:
offset = dest - (const opcode_t *)interp->code->prederef.code;
+ break;
default:
offset = dest - interp->code->base.data;
}