This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
"*INTERNAL*" appended to function name bootstrap failure
- From: David Edelsohn <dje at watson dot ibm dot com>
- To: Mark Mitchell <mark at codesourcery dot com>, Nathan Sidwell <nathan at codesourcery dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Tue, 04 Dec 2001 14:33:55 -0500
- Subject: "*INTERNAL*" appended to function name bootstrap failure
AIX bootstrap failed today because of a syntax error in the
assembly output while trying to compile
libstdc++-v3/libsupc++/eh_aux_runtime.cc . The syntax error is that G++
is appending " *INTERNAL*" to the function name.
gcc/cp/mangle.c says:
We also need to provide mangled names for the maybe-in-charge
constructor, so we treat it here too. mangle_decl_string will
append *INTERNAL* to that, to make sure we never emit it.
Guess what? We're emitting it!
David