diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-23 21:54:55 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-23 21:54:55 +0000 |
commit | 5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1 (patch) | |
tree | 4ee839d629e188345214b2af8d37ac1beb33d168 /gcc | |
parent | adc22a04eb01ef0563b1ec3382fc56f0b5101c90 (diff) | |
download | gcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.zip gcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.tar.gz gcc-5bb92565c02ec1e68b63eb5f8143cba7f6e6ccf1.tar.bz2 |
Don't fail to set $$.
From-SVN: r6144
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-parse.in | 3 |
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); } ; |