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

Fix warning "converting to non-pointer type 'bool' from NULL" in arraycopynode.cpp

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 9
    • 9
    • hotspot
    • None
    • b55

        For the following code in arraycopynode.cpp which was introduced by JDK-6912521:

        bool ArrayCopyNode::finish_transform(...) {
        ...
            if (in(TypeFunc::Control) != ctl) {
        ...
              return NULL;
            }
        }

        older versions of GCC and maybe other compilers warn about:

        /arraycopynode.cpp:458: warning: converting to non-pointer type 'bool' from NULL

        The fix is trivial - just return false instead of NULL as this is already done in several other places in the same function.

              simonis Volker Simonis
              simonis Volker Simonis
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: