Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2176931 | 7 | Vladimir Kozlov | P3 | Closed | Fixed | b13 |
JDK-2171967 | 6u4 | Vladimir Kozlov | P3 | Resolved | Fixed | b03 |
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().
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().
- backported by
-
JDK-2171967 Typo in 6531175 changes in generate_generic_copy() stub
-
- Resolved
-
-
JDK-2176931 Typo in 6531175 changes in generate_generic_copy() stub
-
- Closed
-