* tm-sun4sol2.h: Add CPLUS_MARKER. Solaris 2.0 requires '.'

rather than '$'.  This particular piece of braindamage is
	spreading like ooze. It's now infected libiberty, deja-gnu,
	gdb, and gcc.
	* values.c (baseclass_addr):  Use CPLUS_MARKER rather than
	hardwired '$' character.
This commit is contained in:
Fred Fish 1992-11-30 20:07:35 +00:00
parent c98c5fd4b1
commit 394171ace4
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,12 @@
Mon Nov 30 12:00:25 1992 Fred Fish (fnf@cygnus.com)
* tm-sun4sol2.h: Add CPLUS_MARKER. Solaris 2.0 requires '.'
rather than '$'. This particular piece of braindamage is
spreading like ooze. It's now infected libiberty, deja-gnu,
gdb, and gcc.
* values.c (baseclass_addr): Use CPLUS_MARKER rather than
hardwired '$' character.
Sun Nov 29 15:22:42 1992 Fred Fish (fnf@cygnus.com)
(Changes to break incredibly ugly, unmaintainable 750 line

View File

@ -37,6 +37,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define SUN_FIXED_LBRAC_BUG
/* Assembler doesn't grok dollar signs in identifiers, so we use dots instead.
This item must be coordinated with G++. */
#undef CPLUS_MARKER
#define CPLUS_MARKER '.'
#if 0 /* Setjmp/longjmp are not as well doc'd in SunOS 5.x yet */
/* Offsets into jmp_buf. Not defined by Sun, but at least documented in a

View File

@ -1215,7 +1215,7 @@ baseclass_addr (type, index, valaddr, valuep, errp)
char *vbase_name, *type_name = type_name_no_tag (basetype);
vbase_name = (char *)alloca (strlen (type_name) + 8);
sprintf (vbase_name, "_vb$%s", type_name);
sprintf (vbase_name, "_vb%c%s", CPLUS_MARKER, type_name);
/* First look for the virtual baseclass pointer
in the fields. */
for (i = n_baseclasses; i < len; i++)