public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99778] New: Spurious -Wzero-as-null-pointer-constant on three-way comparisons
@ 2021-03-26  0:55 headch at gmail dot com
  2021-03-26  8:59 ` [Bug c++/99778] " rguenth at gcc dot gnu.org
  2021-06-04 17:17 ` redi at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: headch at gmail dot com @ 2021-03-26  0:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99778

            Bug ID: 99778
           Summary: Spurious -Wzero-as-null-pointer-constant on three-way
                    comparisons
           Product: gcc
           Version: 10.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: headch at gmail dot com
  Target Milestone: ---

Consider the following code:

#include <compare>
#include <iostream>

int main() {
        std::strong_ordering o = 1 <=> 2;
        if(o == 0) {
                std::cout << "equal\n";
        } else {
                std::cout << "unequal\n";
        }
        return 0;
}

When compiled with -Wzero-as-null-pointer-constant, this generates a warning on
the “if” line.

This sounds almost the same as bug #95242, except that bug is closed as fixed
for 10.2, and I am running 10.2.0 and still get this problem; also, the code
quoted in that bug does not generate a warning for me, while this code still
does.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-04 17:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-26  0:55 [Bug c++/99778] New: Spurious -Wzero-as-null-pointer-constant on three-way comparisons headch at gmail dot com
2021-03-26  8:59 ` [Bug c++/99778] " rguenth at gcc dot gnu.org
2021-06-04 17:17 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).