* src/vm/jit/cfg.c (cfg_build): Support for strange basicblocks, where an IF can...
[cacao.git] / src / vm / jit / stack.c
index 3825a0821bda23584e1d5339c4e6856ef0acfa8f..e0343e11d80e8306b6b227a070d7629a65d4dd46 100644 (file)
@@ -1233,6 +1233,9 @@ static bool stack_reach_next_block(stackdata_t *sd)
                assert(iptr->opc == ICMD_NOP);
                iptr->opc = ICMD_GOTO;
                iptr->dst.block = tbptr;
+#if defined(STACK_VERBOSE)
+               if (iptr->line == 0) printf("goto with line 0 in L%03d\n", sd->bptr->nr);
+#endif
 
                if (tbptr->flags < BBFINISHED)
                        sd->repeat = true; /* XXX check if we really need to repeat */