aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-05-27 02:01:30 +0000
committerJeff Law <law@gcc.gnu.org>1999-05-26 20:01:30 -0600
commitdd559f4efe81e2464ef4318e60ea570332688a8a (patch)
treec5ebf79a8356b75b6a31e1ffbdc847e963fe574d
parent2485126f2d78e5e03ee82d8328dc2e10f94eac1c (diff)
downloadgcc-dd559f4efe81e2464ef4318e60ea570332688a8a.zip
gcc-dd559f4efe81e2464ef4318e60ea570332688a8a.tar.gz
gcc-dd559f4efe81e2464ef4318e60ea570332688a8a.tar.bz2
varasm.c (STRIP_NAME_ENCODING): Remove default definition.
* varasm.c (STRIP_NAME_ENCODING): Remove default definition. * output.h (STRIP_NAME_ENCODING): Strip '*' like the old varasm version did. From-SVN: r27196
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/output.h8
-rw-r--r--gcc/varasm.c8
3 files changed, 9 insertions, 11 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f6c768a..4f6f109 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -4,6 +4,10 @@ Thu May 27 02:40:48 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
Thu May 27 02:09:27 1999 Jeffrey A Law (law@cygnus.com)
+ * varasm.c (STRIP_NAME_ENCODING): Remove default definition.
+ * output.h (STRIP_NAME_ENCODING): Strip '*' like the old varasm
+ version did.
+
* reload.c (push_reload): Do not call remove_address_replacements
when presented with identical optional reloads.
diff --git a/gcc/output.h b/gcc/output.h
index 9456ed8..8531085 100644
--- a/gcc/output.h
+++ b/gcc/output.h
@@ -506,8 +506,10 @@ extern FILE *rtl_dump_file;
/* User label prefix in effect for this compilation. */
extern const char *user_label_prefix;
-/* Define a default version of STRIP_NAME_ENCODING so that we can use
- it without a mess of #ifdefs. */
+/* This macro gets just the user-specified name
+ out of the string in a SYMBOL_REF. On most machines,
+ we discard the * if any and that's all. */
#ifndef STRIP_NAME_ENCODING
-#define STRIP_NAME_ENCODING(TARGET,SOURCE) (TARGET = SOURCE)
+#define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \
+ (VAR) = ((SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*'))
#endif
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 4f92290..c6f15b8 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -72,14 +72,6 @@ Boston, MA 02111-1307, USA. */
#endif
#define CHKR_PREFIX_SIZE (sizeof (CHKR_PREFIX) - 1)
-/* This macro gets just the user-specified name
- out of the string in a SYMBOL_REF. On most machines,
- we discard the * if any and that's all. */
-#ifndef STRIP_NAME_ENCODING
-#define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \
- (VAR) = ((SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*'))
-#endif
-
/* File in which assembler code is being written. */
extern FILE *asm_out_file;