Commit 218d0f8a by Richard Kenner

(stmt): Don't give more than one error message if a nested `if' has an

empty body.

From-SVN: r7722
parent 4843c185
...@@ -1680,8 +1680,9 @@ stmt: ...@@ -1680,8 +1680,9 @@ stmt:
{ expand_end_cond (); { expand_end_cond ();
/* This warning is here instead of in simple_if, because we /* This warning is here instead of in simple_if, because we
do not want a warning if an empty if is followed by an do not want a warning if an empty if is followed by an
else statement. */ else statement. Increment stmt_count so we don't
if (extra_warnings && stmt_count == $<itype>1) give a second error if this is a nested `if'. */
if (extra_warnings && stmt_count++ == $<itype>1)
warning_with_file_and_line (if_stmt_file, if_stmt_line, warning_with_file_and_line (if_stmt_file, if_stmt_line,
"empty body in an if-statement"); } "empty body in an if-statement"); }
/* Make sure expand_end_cond is run once /* Make sure expand_end_cond is run once
......
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