|
Quick Lists
|
|
Bug ID:
|
6551887
|
|
Votes
|
0
|
|
Synopsis
|
Typo in 6531175 changes in generate_generic_copy() stub
|
|
Category
|
hotspot:compiler2
|
|
Reported Against
|
|
|
Release Fixed
|
hs10(b13),
6u4(b03) (Bug ID:2171967)
, 7(b13) (Bug ID:2176931)
|
|
State
|
10-Fix Delivered,
bug
|
|
Priority:
|
4-Low
|
|
Related Bugs
|
|
|
Submit Date
|
30-APR-2007
|
|
Description
|
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().
Posted Date : 2007-04-30 22:39:49.0
|
|
Work Around
|
N/A
|
|
Evaluation
|
See Description.
Posted Date : 2007-04-30 22:45:36.0
|
|
Comments
|
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|
|
|
 |