Skip to content

Commit

Permalink
8169201: Montgomery multiply intrinsic should use correct name
Browse files Browse the repository at this point in the history
Corrected stubName to montgomery_multiply for inline_montgomeryMultiply()

Reviewed-by: aph, thartmann, zmajo
  • Loading branch information
shipilev committed Nov 11, 2016
1 parent 4bb80c2 commit b1ace6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hotspot/src/share/vm/opto/library_call.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6026,7 +6026,7 @@ bool LibraryCallKit::inline_montgomeryMultiply() {
}

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");

Expand Down

0 comments on commit b1ace6d

Please sign in to comment.