Commit 6544cdba by Richard Stallman

(expr_no_commas, from ASSIGN op):

Store ERROR_MARK as the original code.

From-SVN: r4019
parent f1ab98e0
...@@ -517,7 +517,8 @@ expr_no_commas: ...@@ -517,7 +517,8 @@ expr_no_commas:
C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR); } C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR); }
| expr_no_commas ASSIGN expr_no_commas | expr_no_commas ASSIGN expr_no_commas
{ $$ = build_modify_expr ($1, $2, $3); { $$ = build_modify_expr ($1, $2, $3);
C_SET_EXP_ORIGINAL_CODE ($$, MODIFY_EXPR); } /* This inhibits warnings in truthvalue_conversion. */
C_SET_EXP_ORIGINAL_CODE ($$, ERROR_MARK); }
; ;
primary: primary:
......
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