public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/53341] New: overloaded operator delete(void *) appear in object file even when not directly used
@ 2012-05-14 10:39 mh+gcc at glandium dot org
  2024-04-06 22:11 ` [Bug c++/53341] " pinskia at gcc dot gnu.org
  2024-04-08 10:08 ` redi at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: mh+gcc at glandium dot org @ 2012-05-14 10:39 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53341

             Bug #: 53341
           Summary: overloaded operator delete(void *) appear in object
                    file even when not directly used
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mh+gcc@glandium.org


Consider the following program:

---------8<----------
#include <algorithm>
extern void moz_free(void *ptr);

__attribute__((always_inline)) inline
void operator delete(void* ptr) throw()
{
    return moz_free(ptr);
}

int foo() {
    return 42;
}
---------8<----------

g++ -std=c++0x will put two symbols in the resulting object:
_ZdlPv and _Z3foov. The former is operator delete(void *)

This doesn't happen when including <new> instead of <algorithm>.

This doesn't happen without -std=c++0x.

This doesn't happen with operator new, operator new[], or operator delete[].

This doesn't happen when removing __attribute__((__externally_visible__)) from
/usr/include/c++/4.7/new. (added in bug 50594)


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

end of thread, other threads:[~2024-04-08 10:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-14 10:39 [Bug c++/53341] New: overloaded operator delete(void *) appear in object file even when not directly used mh+gcc at glandium dot org
2024-04-06 22:11 ` [Bug c++/53341] " pinskia at gcc dot gnu.org
2024-04-08 10:08 ` 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).