This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/25908] [4.2 Regression] vtables with vague linkage is not being marked as vague on darwin
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 Jan 2006 03:40:22 -0000
- Subject: [Bug c++/25908] [4.2 Regression] vtables with vague linkage is not being marked as vague on darwin
- References: <bug-25908-7427@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #16 from pinskia at gcc dot gnu dot org 2006-01-25 03:40 -------
Before the breakage:
.globl __ZTV1f
.weak_definition __ZTV1f
.section __DATA,__const_coal,coalesced
After:
.globl __ZTV1f
.const_data
We are doing two things wrong, not marking this as weak and then not putting it
into the coalesced section.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25908