fixed a wrong class name specified when adding a compiled method
This commit is contained in:
@ -221,7 +221,9 @@ printf ("STARTING GC curheap base %p ptr %p newheap base %p ptr %p\n",
|
||||
|
||||
for (i = 0; i < stix->tmp_count; i++)
|
||||
{
|
||||
*stix->tmp_stack[i] = stix_moveoop (stix, *stix->tmp_stack[i]);
|
||||
stix_oop_t t;
|
||||
t = stix_moveoop (stix, *stix->tmp_stack[i]);
|
||||
*stix->tmp_stack[i] = t;
|
||||
}
|
||||
|
||||
for (cb = stix->cblist; cb; cb = cb->next)
|
||||
|
Reference in New Issue
Block a user