hotspot/src/share/vm/opto/subnode.cpp
changeset 35146 9ebfec283f56
parent 33465 6063f28a6efb
child 35155 db692d3ebbcc
--- a/hotspot/src/share/vm/opto/subnode.cpp	Wed Dec 23 16:24:19 2015 -0800
+++ b/hotspot/src/share/vm/opto/subnode.cpp	Wed Dec 23 21:09:50 2015 -0800
@@ -1519,17 +1519,3 @@
   return TypeD::make( StubRoutines::intrinsic_log10( d ) );
 }
 
-//=============================================================================
-//------------------------------Value------------------------------------------
-// Compute pow
-const Type *PowDNode::Value( PhaseTransform *phase ) const {
-  const Type *t1 = phase->type( in(1) );
-  if( t1 == Type::TOP ) return Type::TOP;
-  if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
-  const Type *t2 = phase->type( in(2) );
-  if( t2 == Type::TOP ) return Type::TOP;
-  if( t2->base() != Type::DoubleCon ) return Type::DOUBLE;
-  double d1 = t1->getd();
-  double d2 = t2->getd();
-  return TypeD::make( StubRoutines::intrinsic_pow( d1, d2 ) );
-}