From: Jim Wilson Date: Mon, 25 Jan 1993 20:20:18 +0000 (-0800) Subject: (PRINT_OPERAND_PUNCT_VALID_P): Delete '@' case. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ccdef65e975cff8fa213416860db7b8d412879f;p=gcc.git (PRINT_OPERAND_PUNCT_VALID_P): Delete '@' case. From-SVN: r3335 --- diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 22bbc7e7db7..94c097143d9 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1722,8 +1722,7 @@ do { \ #define TARGET_CR 015 #define PRINT_OPERAND_PUNCT_VALID_P(CHAR) \ - ((CHAR) == '@' || (CHAR) == '#' || (CHAR) == '*' || (CHAR) == '^' \ - || (CHAR) == '(') + ((CHAR) == '#' || (CHAR) == '*' || (CHAR) == '^' || (CHAR) == '(') /* Print operand X (an rtx) in assembler syntax to file FILE. CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.