6692246: Regression : JDK 6u4 b01 fails two JCK tests when fallback is switched off
authorkamg
Tue, 29 Apr 2008 11:21:51 -0400
changeset 381 e7275780f686
parent 380 ec5fd25a5edf
child 382 02c0a63f30d6
6692246: Regression : JDK 6u4 b01 fails two JCK tests when fallback is switched off Summary: Added a clause to allow null to be an operand to the arraylength bytecode Reviewed-by: sbohne, coleenp
hotspot/src/share/vm/classfile/verifier.cpp
--- a/hotspot/src/share/vm/classfile/verifier.cpp	Thu Apr 24 15:07:57 2008 -0400
+++ b/hotspot/src/share/vm/classfile/verifier.cpp	Tue Apr 29 11:21:51 2008 -0400
@@ -1205,7 +1205,7 @@
         case Bytecodes::_arraylength :
           type = current_frame.pop_stack(
             VerificationType::reference_check(), CHECK_VERIFY(this));
-          if (!type.is_array()) {
+          if (!(type.is_null() || type.is_array())) {
             verify_error(bci, bad_type_msg, "arraylength");
           }
           current_frame.push_stack(