* collect2.c (is_ctor_dtor): Add other possible JOINER values.

From-SVN: r55656
This commit is contained in:
David Edelsohn 2002-07-22 19:31:37 +00:00 committed by David Edelsohn
parent b41caf7c04
commit 7488cc6d69
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-07-22 David Edelsohn <edelsohn@gnu.org>
* collect2.c (is_ctor_dtor): Add other possible JOINER values.
2002-07-22 Richard Earnshaw <rearnsha@arm.com>
* arm.md (movqi): If optimizing and we can create pseudos, use

View File

@ -573,6 +573,15 @@ is_ctor_dtor (s)
const char *orig_s = s;
static const struct names special[] = {
#ifndef NO_DOLLAR_IN_LABEL
{ "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, 1, 0 },
{ "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, 2, 0 },
#else
#ifndef NO_DOT_IN_LABEL
{ "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, 1, 0 },
{ "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, 2, 0 },
#endif /* NO_DOT_IN_LABEL */
#endif /* NO_DOLLAR_IN_LABEL */
{ "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, 1, 0 },
{ "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, 2, 0 },
{ "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, 5, 0 },