diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/cp/parse.y | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f90f804..e8360ee 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 1999-09-09 Mark Mitchell <mark@codesourcery.com> + * parse.y (simple_stmt): Fix typo in last change. + * cp-tree.h (EXPR_STMT_ASSIGNS_THIS): New macro. (STMT_IS_FULL_EXPR_P): Likewise. (STMT_LINENO_FOR_FN_P): Likewise. diff --git a/gcc/cp/parse.y b/gcc/cp/parse.y index 1b1c8b5..6608f85 100644 --- a/gcc/cp/parse.y +++ b/gcc/cp/parse.y @@ -3278,7 +3278,7 @@ simple_stmt: '(' condition ')' { finish_switch_cond ($4, $<ttype>2); } implicitly_scoped_stmt - { finish_switch_stmt ($4, $<ttype>6); } + { finish_switch_stmt ($4, $<ttype>2); } | CASE expr_no_commas ':' { finish_case_label ($2, NULL_TREE); } stmt |
