public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
@ 2014-07-06 20:22 schwab@linux-m68k.org
  2014-07-07  9:49 ` [Bug libstdc++/61728] " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: schwab@linux-m68k.org @ 2014-07-06 20:22 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61728
           Summary: [4.10 regression] lost symbol
                    FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_ca
                    tchEPKS0_PPvj@@CXXABI_1.3
           Product: gcc
           Version: 4.10.0
            Status: UNCONFIRMED
          Keywords: ABI
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: schwab@linux-m68k.org

r212174 removed _ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj
from the libstdc++ ABI.


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
@ 2014-07-07  9:49 ` redi at gcc dot gnu.org
  2014-07-07 11:12 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2014-07-07  9:49 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-07-07
                 CC|                            |jason at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This restores the missing symbol:

--- a/libstdc++-v3/libsupc++/cxxabi.h
+++ b/libstdc++-v3/libsupc++/cxxabi.h
@@ -300,7 +300,7 @@ namespace __cxxabiv1

     virtual bool
     __pointer_catch(const __pbase_type_info* __thr_type, void** __thr_obj,
-                   unsigned __outer) const = 0;
+                   unsigned __outer) const;
   };

   // Type information for simple pointers.

But I don't know why it was made pure. 

Jason, was the change from inline to pure necessary to fix a failure?

The function is still defined as inline in libsupc++/tinfo.h


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
  2014-07-07  9:49 ` [Bug libstdc++/61728] " redi at gcc dot gnu.org
@ 2014-07-07 11:12 ` rguenth at gcc dot gnu.org
  2014-07-09 22:01 ` jason at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-07-07 11:12 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.10.0


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
  2014-07-07  9:49 ` [Bug libstdc++/61728] " redi at gcc dot gnu.org
  2014-07-07 11:12 ` rguenth at gcc dot gnu.org
@ 2014-07-09 22:01 ` jason at gcc dot gnu.org
  2014-07-09 22:22 ` jason at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2014-07-09 22:01 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
                   ` (2 preceding siblings ...)
  2014-07-09 22:01 ` jason at gcc dot gnu.org
@ 2014-07-09 22:22 ` jason at gcc dot gnu.org
  2014-07-09 22:25 ` jason at gcc dot gnu.org
  2015-02-22 20:44 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2014-07-09 22:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Wed Jul  9 22:21:49 2014
New Revision: 212413

URL: https://gcc.gnu.org/viewcvs?rev=212413&root=gcc&view=rev
Log:
    PR libstdc++/61728
    * libsupc++/cxxabi.h: Define __pbase_type_info::__pointer_catch here.
    * libsupc++/tinfo.h: Not here.

Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/libsupc++/cxxabi.h
    trunk/libstdc++-v3/libsupc++/tinfo.h


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
                   ` (3 preceding siblings ...)
  2014-07-09 22:22 ` jason at gcc dot gnu.org
@ 2014-07-09 22:25 ` jason at gcc dot gnu.org
  2015-02-22 20:44 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jason at gcc dot gnu.org @ 2014-07-09 22:25 UTC (permalink / raw)
  To: gcc-bugs

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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.


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

* [Bug libstdc++/61728] [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3
  2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
                   ` (4 preceding siblings ...)
  2014-07-09 22:25 ` jason at gcc dot gnu.org
@ 2015-02-22 20:44 ` redi at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2015-02-22 20:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Defining the function inline means that cxxabi.h depends on our implementation
details, which makes it incompatible with other implementations of the ABI
(libc++ uses our cxxabi.h but provides their own definitions of the public
interface).

Should this be reopened?


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

end of thread, other threads:[~2015-02-22 20:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-06 20:22 [Bug libstdc++/61728] New: [4.10 regression] lost symbol FUNC:_ZNK10__cxxabiv117__pbase_type_info15__pointer_catchEPKS0_PPvj@@CXXABI_1.3 schwab@linux-m68k.org
2014-07-07  9:49 ` [Bug libstdc++/61728] " redi at gcc dot gnu.org
2014-07-07 11:12 ` rguenth at gcc dot gnu.org
2014-07-09 22:01 ` jason at gcc dot gnu.org
2014-07-09 22:22 ` jason at gcc dot gnu.org
2014-07-09 22:25 ` jason at gcc dot gnu.org
2015-02-22 20:44 ` 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).