Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8152131

aarch32: specify which overloaded variant of fmod to use

XMLWordPrintable

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

            akasko Alex Kasko
            akasko Alex Kasko
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: