* src/vm/jit/stack.c (stack_reanalyse_block): Zero line and flags of
authoredwin <none@none>
Sat, 16 Dec 2006 20:59:26 +0000 (20:59 +0000)
committeredwin <none@none>
Sat, 16 Dec 2006 20:59:26 +0000 (20:59 +0000)
the appended NOP.

src/vm/jit/stack.c

index 52193bf13266cc728c0ebe799384aaa34a9efc92..95e8537677c1357112ee1b83365b839574e63139 100644 (file)
@@ -29,7 +29,7 @@
             Christian Thalinger
             Christian Ullrich
 
-   $Id: stack.c 6062 2006-11-27 15:15:54Z edwin $
+   $Id: stack.c 6206 2006-12-16 20:59:26Z edwin $
 
 */
 
@@ -1337,6 +1337,8 @@ bool stack_reanalyse_block(stackdata_t *sd)
 
                MCOPY(iptr, orig->iinstr, instruction, len);
                iptr[len].opc = ICMD_NOP;
+               iptr[len].line = 0;
+               iptr[len].flags.bits = 0;
                b->iinstr = iptr;
                b->icount = ++len;