public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110619] New: Dangling pointer returned from constexpr function converts in nullptr
@ 2023-07-10 18:39 fchelnokov at gmail dot com
  2023-07-10 18:43 ` [Bug c++/110619] " pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: fchelnokov at gmail dot com @ 2023-07-10 18:39 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110619
           Summary: Dangling pointer returned from constexpr function
                    converts in nullptr
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

The following function

constexpr auto f() {
    int i = 0;
    return &i;
};

returns dangling pointer on stack variable, but it is not nullptr. So next
assertion passes in Clang and MSVC:

static_assert( f() != nullptr );


But in GCC the assertion fails. Online demo:
https://gcc.godbolt.org/z/6E4rE963n

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

end of thread, other threads:[~2023-08-07  9:13 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-10 18:39 [Bug c++/110619] New: Dangling pointer returned from constexpr function converts in nullptr fchelnokov at gmail dot com
2023-07-10 18:43 ` [Bug c++/110619] " pinskia at gcc dot gnu.org
2023-07-10 18:44 ` pinskia at gcc dot gnu.org
2023-07-10 19:04 ` fchelnokov at gmail dot com
2023-07-12  1:51 ` de34 at live dot cn
2023-07-13 19:02 ` ppalka at gcc dot gnu.org
2023-07-26  1:45 ` cvs-commit at gcc dot gnu.org
2023-08-07  5:04 ` peter at cordes dot ca
2023-08-07  7:41 ` fchelnokov at gmail dot com
2023-08-07  9:12 ` 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).