--- old/src/share/vm/opto/subnode.cpp 2015-10-13 18:21:11.985026500 -0700 +++ new/src/share/vm/opto/subnode.cpp 2015-10-13 18:21:11.657993800 -0700 @@ -1510,17 +1510,6 @@ //============================================================================= //------------------------------Value------------------------------------------ -// Compute log -const Type *LogDNode::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_log( d ) ); -} - -//============================================================================= -//------------------------------Value------------------------------------------ // Compute log10 const Type *Log10DNode::Value( PhaseTransform *phase ) const { const Type *t1 = phase->type( in(1) );