aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-11-23 21:54:55 +0000
committerRichard Stallman <rms@gnu.org>1993-11-23 21:54:55 +0000
commit5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1 (patch)
tree4ee839d629e188345214b2af8d37ac1beb33d168
parentadc22a04eb01ef0563b1ec3382fc56f0b5101c90 (diff)
downloadgcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.zip
gcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.tar.gz
gcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.tar.bz2
Don't fail to set $$.
From-SVN: r6144
-rw-r--r--gcc/c-parse.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in
index 2fc05a0..06fd36f 100644
--- a/gcc/c-parse.in
+++ b/gcc/c-parse.in
@@ -1976,7 +1976,8 @@ label: CASE expr_no_commas ':'
maybe_type_qual:
/* empty */
- { emit_line_note (input_filename, lineno); }
+ { emit_line_note (input_filename, lineno);
+ $$ = NULL_TREE; }
| TYPE_QUAL
{ emit_line_note (input_filename, lineno); }
;