diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-22 10:52:20 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-22 10:52:20 +0000 |
commit | 957211e43ebcdd4c045e8b0fd5e11c9a962c5f58 (patch) | |
tree | bfdfc278de0c59db3b32cdfed40f5986c766a623 /gcc/c-parse.in | |
parent | eced91210fd097e28da3221c00e99aaf89fb889d (diff) | |
download | gcc-957211e43ebcdd4c045e8b0fd5e11c9a962c5f58.tar.gz |
* function.c (allocate_struct_function): Do not initialize expr, emit
and varasm.
(prepare_function_start): Do it here.
* c-parse.in (maybe_type_qual): Do not produce line number notes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76345 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index 4cdbfed8b0c..3804ea5460b 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -2504,10 +2504,9 @@ label: CASE expr_no_commas ':' maybe_type_qual: /* empty */ - { emit_line_note (input_location); - $$ = NULL_TREE; } + { $$ = NULL_TREE; } | TYPE_QUAL - { emit_line_note (input_location); } + { } ; xexpr: |