Merge
authoriignatyev
Tue, 09 Dec 2014 14:49:27 +0000
changeset 28043 59286db74db6
parent 28042 40ce95bcdc78 (current diff)
parent 28041 fed7f90dc4c4 (diff)
child 28044 ede40159fd3b
child 28045 dc52d4bb1316
Merge
--- a/hotspot/src/share/vm/opto/castnode.cpp	Tue Dec 09 17:31:40 2014 +0300
+++ b/hotspot/src/share/vm/opto/castnode.cpp	Tue Dec 09 14:49:27 2014 +0000
@@ -104,7 +104,8 @@
   // Try to improve the type of the CastII if we recognize a CmpI/If
   // pattern.
   if (_carry_dependency) {
-    if (in(0) != NULL && (in(0)->is_IfFalse() || in(0)->is_IfTrue())) {
+    if (in(0) != NULL && in(0)->in(0) != NULL && in(0)->in(0)->is_If()) {
+      assert(in(0)->is_IfFalse() || in(0)->is_IfTrue(), "should be If proj");
       Node* proj = in(0);
       if (proj->in(0)->in(1)->is_Bool()) {
         Node* b = proj->in(0)->in(1);