changeset 10015:2198f5b86550 jdk8u181-b06

8169201: Montgomery multiply intrinsic should use correct name Summary: Corrected stubName to montgomery_multiply for inline_montgomeryMultiply() Reviewed-by: aph, thartmann, zmajo
author shade
date Thu, 10 Nov 2016 23:26:56 -0800
parents a0373be7fe1b
children 892e637195c7
files src/share/vm/opto/library_call.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/opto/library_call.cpp	Wed Feb 28 05:31:04 2018 +0000
+++ b/src/share/vm/opto/library_call.cpp	Thu Nov 10 23:26:56 2016 -0800
@@ -6026,7 +6026,7 @@
   }
 
   assert(UseMontgomeryMultiplyIntrinsic, "not implemented on this platform");
-  const char* stubName = "montgomery_square";
+  const char* stubName = "montgomery_multiply";
 
   assert(callee()->signature()->size() == 7, "montgomeryMultiply has 7 parameters");