hotspot/src/share/vm/opto/subnode.cpp
changeset 38018 1dc6c6f21231
parent 35756 28e2a0fd6756
child 38698 2f5f325d4e6d
--- a/hotspot/src/share/vm/opto/subnode.cpp	Wed Mar 30 17:04:14 2016 +0200
+++ b/hotspot/src/share/vm/opto/subnode.cpp	Wed Apr 06 10:29:26 2016 -0700
@@ -1533,25 +1533,3 @@
   if( d < 0.0 ) return Type::DOUBLE;
   return TypeD::make( sqrt( d ) );
 }
-
-//=============================================================================
-//------------------------------Value------------------------------------------
-// Compute tan
-const Type* TanDNode::Value(PhaseGVN* 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_tan( d ) );
-}
-
-//=============================================================================
-//------------------------------Value------------------------------------------
-// Compute log10
-const Type* Log10DNode::Value(PhaseGVN* 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_log10( d ) );
-}