hotspot/src/share/vm/runtime/stubRoutines.hpp
changeset 33465 6063f28a6efb
parent 33089 f4e956ed8b43
child 33485 29d1dfa9bb4a
--- a/hotspot/src/share/vm/runtime/stubRoutines.hpp	Thu Oct 22 19:03:52 2015 +0000
+++ b/hotspot/src/share/vm/runtime/stubRoutines.hpp	Thu Oct 22 21:39:25 2015 -0700
@@ -208,6 +208,7 @@
   static address _montgomerySquare;
 
   static address _dexp;
+  static address _dlog;
 
   // These are versions of the java.lang.Math methods which perform
   // the same operations as the intrinsic version.  They are used for
@@ -376,7 +377,8 @@
   static address montgomeryMultiply()  { return _montgomeryMultiply; }
   static address montgomerySquare()    { return _montgomerySquare; }
 
-  static address dexp()                {return _dexp; }
+  static address dexp()                { return _dexp; }
+  static address dlog()                { return _dlog; }
 
   static address select_fill_function(BasicType t, bool aligned, const char* &name);