* src/vm/jit/stack.h (COPYCURSTACK): Do not create invars here.
[cacao.git] / src / vm / jit / stack.h
index dde07d52a7b70e108f1752b292cfcce5123ade7e..b4082ede663648c818d635b38dae0e616527ad94 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Christian Ullrich
                        Edwin Steiner
 
-   $Id: stack.h 5443 2006-09-09 14:49:25Z edwin $
+   $Id: stack.h 5446 2006-09-09 20:05:35Z edwin $
 
 */
 
         (sd).new += stackdepth;                                      \
         copy = (sd).new;                                             \
         while (s) {                                                  \
-                       GET_NEW_VAR(sd, new_index, s->type);                     \
             copy--;                                                  \
             copy->prev = copy-1;                                     \
             copy->creator = NULL;                                    \
             copy->type = s->type;                                    \
             copy->flags = 0;                                         \
             copy->varkind = STACKVAR;                                \
-            copy->varnum = new_index;                                \
-                       (sd).var[new_index].flags = OUTVAR;                      \
             s = s->prev;                                             \
         }                                                            \
         copy->prev = NULL;                                           \