-
Enhancement
-
Resolution: Fixed
-
P4
-
port-stage-aarch32-8
-
aarch32
-
linux
The following cast of fmod function pointer to address causes "overloaded function with no contextual type information" compilation error with GCC6:
__ mov(rscratch1, (address)fmod);
Proposed change is to cast fmod to the double version:
__ mov(rscratch1, (address)(double (*)(double, double))fmod);
__ mov(rscratch1, (address)fmod);
Proposed change is to cast fmod to the double version:
__ mov(rscratch1, (address)(double (*)(double, double))fmod);
- backport of
-
JDK-8171913 aarch32: fix overloaded fmod usage with gcc6
- Closed