hotspot/src/share/vm/opto/chaitin.cpp
changeset 13895 f6dfe4123709
parent 13520 a1ba7784ef54
child 14623 70c4c1be0a14
--- a/hotspot/src/share/vm/opto/chaitin.cpp	Tue Sep 25 15:48:17 2012 -0700
+++ b/hotspot/src/share/vm/opto/chaitin.cpp	Thu Sep 27 09:38:42 2012 -0700
@@ -1588,7 +1588,7 @@
 
   // Now we see we need a base-Phi here to merge the bases
   const Type *t = base->bottom_type();
-  base = new (C, derived->req()) PhiNode( derived->in(0), t );
+  base = new (C) PhiNode( derived->in(0), t );
   for( i = 1; i < derived->req(); i++ ) {
     base->init_req(i, find_base_for_derived(derived_base_map, derived->in(i), maxlrg));
     t = t->meet(base->in(i)->bottom_type());