-
Bug
-
Resolution: Fixed
-
P4
-
9
-
b40
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8083447 | emb-9 | Vladimir Kozlov | P4 | Resolved | Fixed | master |
The regression test pushed with 8059299 fix has typo:
- if (counter2 != counter) {
+ if (counter2 != counter0) {
throw new RuntimeException("Failed: counter2(" + counter2 + ") != counter0(" + counter0 + ")");
}
Only jdk9 is affected - I fixed the typo in backport.
- if (counter2 != counter) {
+ if (counter2 != counter0) {
throw new RuntimeException("Failed: counter2(" + counter2 + ") != counter0(" + counter0 + ")");
}
Only jdk9 is affected - I fixed the typo in backport.
- backported by
-
JDK-8083447 Typo in test/compiler/exceptions/CatchInlineExceptions.java
-
- Resolved
-
- relates to
-
JDK-8059299 assert(adr_type != NULL) failed: expecting TypeKlassPtr
-
- Closed
-