From: Jeffrey A Law Date: Mon, 24 Aug 1998 10:26:45 +0000 (+0000) Subject: * h8300.h (STRIP_NAME_ENCODING): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ffa0ec710157f9ba81bcfec1059c162c21f05d7d;p=gcc.git * h8300.h (STRIP_NAME_ENCODING): Fix typo. From-SVN: r21934 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 10f8e267a83..3e3371d5a91 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Mon Aug 24 10:25:46 1998 Jeffrey A Law (law@cygnus.com) + * h8300.h (STRIP_NAME_ENCODING): Fix typo. + * sparc.md (TFmode splits): Use reg_overlap_mentioned_p to detect when the source and destination overlap. diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 3d2d1e3a1f4..c65eb42e176 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1138,7 +1138,7 @@ readonly_data() \ /* Store the user-specified part of SYMBOL_NAME in VAR. This is sort of inverse to ENCODE_SECTION_INFO. */ #define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \ - (VAR) = (SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*' || (SYMBOL_NAME)[0] == '@' || SYMBOL_NAME[0] == '&') + (VAR) = (SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*' || (SYMBOL_NAME)[0] == '@' || (SYMBOL_NAME)[0] == '&') /* How to refer to registers in assembler output. This sequence is indexed by compiler's hard-register-number (see above). */