In generate_generic_copy() stub I incorrectly replaced dec()
instruction with neg().
For example, in stubGenerator_i486.cpp:
__ xorl(eax, eax);
- __ decl(eax); // return -1
+ __ negl(eax); // return -1
It should be notl() or decrement().
|