Skip to content

Commit

Permalink
Revise comment in sharedRuntime.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TheShermanTanker authored Nov 21, 2024
1 parent 967b960 commit b0083f8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/hotspot/share/runtime/sharedRuntime.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,12 @@ class SharedRuntime: AllStatic {


#ifdef _WIN64
// Workaround for fmod issue in the Windows x64 CRT
// This used to be a workaround for the fmod issue
// in the Windows x64 CRT. Windows x64 now uses its
// own custom assembly, but during the review of
// 8342769 it was discovered that Windows ARM64
// now needs the workaround, so this is now used
// for Windows ARM64
static double fmod_winx64(double x, double y);
#endif

Expand Down

0 comments on commit b0083f8

Please sign in to comment.