-
Enhancement
-
Resolution: Fixed
-
P4
-
14
-
b16
Numerous JVM conditionals compare against T_OBJECT and T_ARRAY
} else if (type == T_OBJECT || type == T_ARRAY) {
For readability and future extendability replace with a call to
} else if (is_reference_type(type)) {
} else if (type == T_OBJECT || type == T_ARRAY) {
For readability and future extendability replace with a call to
} else if (is_reference_type(type)) {
- relates to
-
JDK-8231375 AArch64 build failure after JDK-8230505
-
- Resolved
-
-
JDK-8230199 consolidate signature parsing code in HotSpot sources
-
- Resolved
-
-
JDK-8231448 s390 and ppc - replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
-
- Resolved
-