diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-28 21:30:29 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-10-28 21:30:29 -0400 |
commit | e1eb754f6005d190d3fb9ada1b669bf8d15ca320 (patch) | |
tree | edd519efd3fc0cb4781a85fde340e3cab162177c /gcc | |
parent | 0b31e2797e1f60f05437c450d0716e2310635b3b (diff) | |
download | gcc-e1eb754f6005d190d3fb9ada1b669bf8d15ca320.zip gcc-e1eb754f6005d190d3fb9ada1b669bf8d15ca320.tar.gz gcc-e1eb754f6005d190d3fb9ada1b669bf8d15ca320.tar.bz2 |
(init): Remove extraneous pop_momentary in error case.
From-SVN: r5926
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-parse.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index a271195..2fc05a0 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -1127,8 +1127,7 @@ init: pop_momentary_nofree (); } | error - { $$ = error_mark_node; - pop_momentary (); } + { $$ = error_mark_node; } ; /* `initlist_maybe_comma' is the guts of an initializer in braces. */ |