public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/109770] New: wrong(?) devirtualization
@ 2023-05-08 13:30 rguenth at gcc dot gnu.org
  2023-05-08 13:31 ` [Bug ipa/109770] " rguenth at gcc dot gnu.org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-05-08 13:30 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109770
           Summary: wrong(?) devirtualization
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ipa
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
                CC: marxin at gcc dot gnu.org
  Target Milestone: ---

#include <new>

struct Base
{
  virtual ~Base() {}
};
struct A : Base
{
  virtual ~A() {}
};
struct B : Base
{
  [[gnu::noinline]] B() { new (this) A; }
  virtual ~B() { __builtin_abort (); }
};
int main()
{
  Base *p = new B;
  delete p;
}

aborts when compiled with -O2 (with devirtualization enabled).  Neither
GCC nor clang diagnose the placement new in B::B() (but it looks fishy).

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

end of thread, other threads:[~2024-01-12 10:53 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-08 13:30 [Bug ipa/109770] New: wrong(?) devirtualization rguenth at gcc dot gnu.org
2023-05-08 13:31 ` [Bug ipa/109770] " rguenth at gcc dot gnu.org
2023-05-08 13:34 ` rguenth at gcc dot gnu.org
2023-05-08 17:09 ` rguenth at gcc dot gnu.org
2023-05-08 17:14 ` [Bug ipa/109770] [10/11/12/13 Regression] " rguenth at gcc dot gnu.org
2023-05-08 17:21 ` [Bug ipa/109770] [10/11/12/13/14 " rguenth at gcc dot gnu.org
2023-05-09  8:24 ` m.cencora at gmail dot com
2023-05-09  8:49 ` rguenth at gcc dot gnu.org
2023-05-09  9:34 ` m.cencora at gmail dot com
2023-05-17 17:07 ` redi at gcc dot gnu.org
2023-07-07 10:45 ` [Bug ipa/109770] [11/12/13/14 " rguenth at gcc dot gnu.org
2024-01-12 10:53 ` rguenth 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).