hotspot/src/share/vm/opto/subnode.cpp
changeset 33089 f4e956ed8b43
parent 32084 7743e6943cdf
child 33465 6063f28a6efb
--- a/hotspot/src/share/vm/opto/subnode.cpp	Wed Sep 30 04:35:39 2015 -0400
+++ b/hotspot/src/share/vm/opto/subnode.cpp	Mon Oct 05 20:02:40 2015 -0700
@@ -1532,18 +1532,6 @@
 
 //=============================================================================
 //------------------------------Value------------------------------------------
-// Compute exp
-const Type *ExpDNode::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;
-  double d = t1->getd();
-  return TypeD::make( StubRoutines::intrinsic_exp( d ) );
-}
-
-
-//=============================================================================
-//------------------------------Value------------------------------------------
 // Compute pow
 const Type *PowDNode::Value( PhaseTransform *phase ) const {
   const Type *t1 = phase->type( in(1) );