< prev index next >

src/hotspot/share/opto/connode.cpp

Print this page

        

@@ -48,11 +48,10 @@
   case T_INT:         return new ConINode( t->is_int() );
   case T_LONG:        return new ConLNode( t->is_long() );
   case T_FLOAT:       return new ConFNode( t->is_float_constant() );
   case T_DOUBLE:      return new ConDNode( t->is_double_constant() );
   case T_VOID:        return new ConNode ( Type::TOP );
-  case T_VALUETYPEPTR:
   case T_OBJECT:      return new ConPNode( t->is_ptr() );
   case T_ARRAY:       return new ConPNode( t->is_aryptr() );
   case T_ADDRESS:     return new ConPNode( t->is_ptr() );
   case T_NARROWOOP:   return new ConNNode( t->is_narrowoop() );
   case T_NARROWKLASS: return new ConNKlassNode( t->is_narrowklass() );
< prev index next >