public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete
@ 2021-06-09  6:38 dcb314 at hotmail dot com
  2021-06-09  6:41 ` [Bug c/100984] " dcb314 at hotmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: dcb314 at hotmail dot com @ 2021-06-09  6:38 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 100984
           Summary: gimple-ssa-evrp.c: mismatched new and delete
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dcb314 at hotmail dot com
  Target Milestone: ---

I have just done a valgrind build of gcc trunk and it says:

==279305== Mismatched free() / delete / delete []
==279305==    at 0x48434DD: operator delete(void*) (vg_replace_malloc.c:802)
==279305==    by 0x14B0691: ~pointer_equiv_analyzer (gimple-ssa-evrp.c:168)

==279305==  Address 0x133d9a40 is 0 bytes inside a block of size 32 alloc'd
==279305==    at 0x4842103: operator new[](unsigned long)
(vg_replace_malloc.c:579)
==279305==    by 0x14B0CB7: pointer_equiv_analyzer (gimple-ssa-evrp.c:163)

Source code is

pointer_equiv_analyzer::pointer_equiv_analyzer (gimple_ranger *r)
{
  m_ranger = r;
  m_global_points = new tree[num_ssa_names] ();
}

pointer_equiv_analyzer::~pointer_equiv_analyzer ()
{
  delete m_global_points;
}

Suggest use [] on delete.

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

* [Bug c/100984] gimple-ssa-evrp.c: mismatched new and delete
  2021-06-09  6:38 [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete dcb314 at hotmail dot com
@ 2021-06-09  6:41 ` dcb314 at hotmail dot com
  2021-06-10  7:21 ` [Bug tree-optimization/100984] " aldyh at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: dcb314 at hotmail dot com @ 2021-06-09  6:41 UTC (permalink / raw)
  To: gcc-bugs

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

David Binderman <dcb314 at hotmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aldyh at gcc dot gnu.org

--- Comment #1 from David Binderman <dcb314 at hotmail dot com> ---
Adding author of code.

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

* [Bug tree-optimization/100984] gimple-ssa-evrp.c: mismatched new and delete
  2021-06-09  6:38 [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete dcb314 at hotmail dot com
  2021-06-09  6:41 ` [Bug c/100984] " dcb314 at hotmail dot com
@ 2021-06-10  7:21 ` aldyh at gcc dot gnu.org
  2021-09-13  7:45 ` aldyh at gcc dot gnu.org
  2021-09-13  7:51 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: aldyh at gcc dot gnu.org @ 2021-06-10  7:21 UTC (permalink / raw)
  To: gcc-bugs

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

Aldy Hernandez <aldyh at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2021-06-10
          Component|c                           |tree-optimization

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

* [Bug tree-optimization/100984] gimple-ssa-evrp.c: mismatched new and delete
  2021-06-09  6:38 [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete dcb314 at hotmail dot com
  2021-06-09  6:41 ` [Bug c/100984] " dcb314 at hotmail dot com
  2021-06-10  7:21 ` [Bug tree-optimization/100984] " aldyh at gcc dot gnu.org
@ 2021-09-13  7:45 ` aldyh at gcc dot gnu.org
  2021-09-13  7:51 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: aldyh at gcc dot gnu.org @ 2021-09-13  7:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Aldy Hernandez <aldyh at gcc dot gnu.org> ---
Fixed in trunk.  Is this still an issue on a branch?

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

* [Bug tree-optimization/100984] gimple-ssa-evrp.c: mismatched new and delete
  2021-06-09  6:38 [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete dcb314 at hotmail dot com
                   ` (2 preceding siblings ...)
  2021-09-13  7:45 ` aldyh at gcc dot gnu.org
@ 2021-09-13  7:51 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-13  7:51 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
   Target Milestone|---                         |12.0
         Resolution|---                         |FIXED

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed by r12-1418-g44b1502070d7

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

end of thread, other threads:[~2021-09-13  7:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09  6:38 [Bug c/100984] New: gimple-ssa-evrp.c: mismatched new and delete dcb314 at hotmail dot com
2021-06-09  6:41 ` [Bug c/100984] " dcb314 at hotmail dot com
2021-06-10  7:21 ` [Bug tree-optimization/100984] " aldyh at gcc dot gnu.org
2021-09-13  7:45 ` aldyh at gcc dot gnu.org
2021-09-13  7:51 ` pinskia 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).