Commit d48fd218 by Zack Weinberg

toplev.c: Move default definition of USER_LABEL_PREFIX...

	* toplev.c: Move default definition of USER_LABEL_PREFIX...
	* defaults.h: ... here.

From-SVN: r57081
parent 92bc3c1a
2002-09-12 Zack Weinberg <zack@codesourcery.com>
* toplev.c: Move default definition of USER_LABEL_PREFIX...
* defaults.h: ... here.
2002-09-12 Richard Henderson <rth@redhat.com> 2002-09-12 Richard Henderson <rth@redhat.com>
* vax.c: Include tree.h earlier. * vax.c: Include tree.h earlier.
......
...@@ -240,6 +240,11 @@ do { fputs (integer_asm_op (POINTER_SIZE / UNITS_PER_WORD, TRUE), FILE); \ ...@@ -240,6 +240,11 @@ do { fputs (integer_asm_op (POINTER_SIZE / UNITS_PER_WORD, TRUE), FILE); \
#endif #endif
#endif #endif
/* By default, there is no prefix on user-defined symbols. */
#ifndef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX ""
#endif
/* If the target supports weak symbols, define TARGET_ATTRIBUTE_WEAK to /* If the target supports weak symbols, define TARGET_ATTRIBUTE_WEAK to
provide a weak attribute. Else define it to nothing. provide a weak attribute. Else define it to nothing.
......
...@@ -976,11 +976,6 @@ static const param_info lang_independent_params[] = { ...@@ -976,11 +976,6 @@ static const param_info lang_independent_params[] = {
{ NULL, 0, NULL } { NULL, 0, NULL }
}; };
/* A default for same. */
#ifndef USER_LABEL_PREFIX
#define USER_LABEL_PREFIX ""
#endif
/* Table of language-independent -f options. /* Table of language-independent -f options.
STRING is the option name. VARIABLE is the address of the variable. STRING is the option name. VARIABLE is the address of the variable.
ON_VALUE is the value to store in VARIABLE ON_VALUE is the value to store in VARIABLE
......
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