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

aarch32: fix overloaded fmod usage with gcc6

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • None
    • port-stage-aarch32-8
    • hotspot
    • None
    • arm
    • 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:
              1 Start watching this issue

                Created:
                Updated:
                Resolved: