Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8152131 | port-stage-aarch32-8 port-stage-aarch32-9 | Alex Kasko | P4 | Resolved | Fixed |
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);
- backported by
-
JDK-8152131 aarch32: specify which overloaded variant of fmod to use
-
- Resolved
-