Commit dba1acea by Gabriel Dos Reis Committed by Gabriel Dos Reis

lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @' whenever @ is a symbolic name.

2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>

        * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
        whenever @ is a symbolic name.

From-SVN: r34465
parent 08c26ec9
2000-06-09 Gabriel Dos Reis <gdr@codesourcery.com>
* lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
whenever @ is a symbolic name.
2000-06-08 Mark Mitchell <mark@codesourcery.com>
Remove old ABI mangling code.
......
......@@ -468,9 +468,9 @@ init_operators ()
#define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P) \
my_friendly_assert ((strlen ("operator ") + strlen (NAME) + 1 \
<= 256), \
+ ISALPHA (NAME[0]) <= 256), \
20000526); \
sprintf (buffer, "operator %s", NAME); \
sprintf (buffer, ISALPHA (NAME[0]) ? "operator %s" : "operator%s", NAME); \
identifier = get_identifier (buffer); \
IDENTIFIER_OPNAME_P (identifier) = 1; \
\
......
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