--- old/src/share/vm/opto/parse1.cpp 2013-11-18 21:54:03.578195892 +0100 +++ new/src/share/vm/opto/parse1.cpp 2013-11-18 21:54:03.187875529 +0100 @@ -1649,7 +1649,7 @@ assert(bt1 != Type::BOTTOM, "should not be building conflict phis"); map()->set_req(j, _gvn.transform_no_reclaim(phi)); debug_only(const Type* bt2 = phi->bottom_type()); - assert(bt2->higher_equal(bt1), "must be consistent with type-flow"); + assert(bt2->higher_equal(bt1, true), "must be consistent with type-flow"); record_for_igvn(phi); } } @@ -2022,7 +2022,7 @@ !tp->klass()->is_interface()) { // sharpen the type eagerly; this eases certain assert checking if (tp->higher_equal(TypeInstPtr::NOTNULL)) - tr = tr->join(TypeInstPtr::NOTNULL)->is_instptr(); + tr = tr->join(TypeInstPtr::NOTNULL, true)->is_instptr(); value = _gvn.transform(new (C) CheckCastPPNode(0,value,tr)); } }