Commit b89dc911 by Kazu Hirata Committed by Kazu Hirata

collect2.c (COLLECT_PARSE_FLAG): Remove.

	* collect2.c (COLLECT_PARSE_FLAG): Remove.
	(main): Remove a reference to COLLECT_PARSE_FLAG
	* system.h: Poison COLLECT_PARSE_FLAG.
	* doc/tm.texi (COLLECT_PARSE_FLAG): Remove.

From-SVN: r88406
parent e367a231
2004-10-01 Kazu Hirata <kazu@cs.umass.edu>
* collect2.c (COLLECT_PARSE_FLAG): Remove.
(main): Remove a reference to COLLECT_PARSE_FLAG
* system.h: Poison COLLECT_PARSE_FLAG.
* doc/tm.texi (COLLECT_PARSE_FLAG): Remove.
2004-10-01 Paul Brook <paul@codesourcery.com> 2004-10-01 Paul Brook <paul@codesourcery.com>
* config/arm/crti.asm: Give _init and _fini function type. * config/arm/crti.asm: Give _init and _fini function type.
......
...@@ -149,10 +149,6 @@ int do_collecting = 1; ...@@ -149,10 +149,6 @@ int do_collecting = 1;
int do_collecting = 0; int do_collecting = 0;
#endif #endif
#ifndef COLLECT_PARSE_FLAG
#define COLLECT_PARSE_FLAG(FLAG)
#endif
/* Nonzero if we should suppress the automatic demangling of identifiers /* Nonzero if we should suppress the automatic demangling of identifiers
in linker error messages. Set from COLLECT_NO_DEMANGLE. */ in linker error messages. Set from COLLECT_NO_DEMANGLE. */
int no_demangle; int no_demangle;
...@@ -864,7 +860,6 @@ main (int argc, char **argv) ...@@ -864,7 +860,6 @@ main (int argc, char **argv)
{ {
if (! strcmp (argv[i], "-debug")) if (! strcmp (argv[i], "-debug"))
debug = 1; debug = 1;
COLLECT_PARSE_FLAG (argv[i]);
} }
vflag = debug; vflag = debug;
} }
......
...@@ -7231,12 +7231,6 @@ This macro is effective only in a native compiler; @command{collect2} as ...@@ -7231,12 +7231,6 @@ This macro is effective only in a native compiler; @command{collect2} as
part of a cross compiler always uses @command{nm} for the target machine. part of a cross compiler always uses @command{nm} for the target machine.
@end defmac @end defmac
@defmac COLLECT_PARSE_FLAG (@var{flag})
Define this macro to be C code that examines @command{collect2} command
line option @var{flag} and performs special actions if
@command{collect2} needs to behave differently depending on @var{flag}.
@end defmac
@defmac REAL_NM_FILE_NAME @defmac REAL_NM_FILE_NAME
Define this macro as a C string constant containing the file name to use Define this macro as a C string constant containing the file name to use
to execute @command{nm}. The default is to search the path normally for to execute @command{nm}. The default is to search the path normally for
......
...@@ -652,7 +652,8 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; ...@@ -652,7 +652,8 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
DBX_OUTPUT_STANDARD_TYPES BUILTIN_SETJMP_FRAME_VALUE \ DBX_OUTPUT_STANDARD_TYPES BUILTIN_SETJMP_FRAME_VALUE \
SUNOS4_SHARED_LIBRARIES PROMOTE_FOR_CALL_ONLY \ SUNOS4_SHARED_LIBRARIES PROMOTE_FOR_CALL_ONLY \
SPACE_AFTER_L_OPTION NO_RECURSIVE_FUNCTION_CSE \ SPACE_AFTER_L_OPTION NO_RECURSIVE_FUNCTION_CSE \
DEFAULT_MAIN_RETURN TARGET_MEM_FUNCTIONS EXPAND_BUILTIN_VA_ARG DEFAULT_MAIN_RETURN TARGET_MEM_FUNCTIONS EXPAND_BUILTIN_VA_ARG \
COLLECT_PARSE_FLAG
/* Hooks that are no longer used. */ /* Hooks that are no longer used. */
#pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment