Details
-
Type:
Enhancement
-
Status: Resolved
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: port-stage-aarch32-8
-
Fix Version/s: port-stage-aarch32-8, port-stage-aarch32-9
-
Component/s: hotspot
-
Labels:
-
Subcomponent:
-
CPU:aarch32
-
OS:linux
Description
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);
Attachments
Issue Links
- backport of
-
JDK-8171913 aarch32: fix overloaded fmod usage with gcc6
-
- Closed
-