This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: [c/c++] i686 codegen bugs in tinfo2.cc
On Sun, Jan 14, 2001 at 03:49:28PM -0800, Richard Henderson wrote:
> I've got it. Stepping through operators.sh-exe I see that
> _ZNKSs7compareEPKc is either mis-assembled or mis-linked.
Actually, I was slightly confused -- it is not a binutils bug.
The problem is entirely due to the presense of linkonce sections.
There are three copies of _ZNSs9_M_mutateEjjj in the objects
going into libstdc++.so. Only one of these contains the PIC
thunk at the beginning of the section. The linker chose a
version that didn't have it.
That is our bug.
r~