Commit 68ff1582 by Andreas Schwab Committed by Jeff Law

lex.c (do_scoped_id): Fix parenthesizing.

8
        * lex.c (do_scoped_id): Fix parenthesizing.

From-SVN: r18408
parent d574824c
...@@ -2985,7 +2985,7 @@ do_scoped_id (token, parsing) ...@@ -2985,7 +2985,7 @@ do_scoped_id (token, parsing)
LOOKUP_EXPR_GLOBAL (id) = 1; LOOKUP_EXPR_GLOBAL (id) = 1;
return id; return id;
} }
if (parsing && yychar == '(' || yychar == LEFT_RIGHT) if (parsing && (yychar == '(' || yychar == LEFT_RIGHT))
id = implicitly_declare (token); id = implicitly_declare (token);
else else
{ {
......
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