fixed a wrong class name specified when adding a compiled method

This commit is contained in:
hyunghwan.chung
2015-05-31 18:43:37 +00:00
parent cf029a0570
commit 87929410db
7 changed files with 38 additions and 22 deletions

View File

@ -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)