-
Bug
-
Resolution: Fixed
-
P1
-
9
-
b28
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8056356 | emb-9 | Roland Westrelin | P1 | Resolved | Fixed | b28 |
JDK-8063573 | 8u45 | Roland Westrelin | P1 | Resolved | Fixed | b01 |
JDK-8054624 | 8u40 | Tobias Hartmann | P4 | Resolved | Fixed | b02 |
JDK-8070853 | emb-8u47 | Roland Westrelin | P1 | Resolved | Fixed | team |
The C++ compiler doesn't seem to compile this code pattern correctly:
jlong_accessor acc = { d };
and it should be:
jlong_accessor acc;
acc.long_value = d;
instead
jlong_accessor acc = { d };
and it should be:
jlong_accessor acc;
acc.long_value = d;
instead
- backported by
-
JDK-8056356 8040121 is broken
-
- Resolved
-
-
JDK-8063573 8040121 is broken
-
- Resolved
-
-
JDK-8070853 8040121 is broken
-
- Resolved
-
-
JDK-8054624 8040121 is broken
-
- Resolved
-