diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-29 17:21:30 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-29 17:21:30 +0000 |
| commit | 19b5557958cb9bbd029abb9c3005e0f6d5530cf9 (patch) | |
| tree | f0bbe0422f2bd657e8c18ddc65f1585b78415bc2 /gcc | |
| parent | 67cfeae26bfa862aa5975e8f69832cbb6544c1a7 (diff) | |
| download | ppe42-gcc-19b5557958cb9bbd029abb9c3005e0f6d5530cf9.tar.gz ppe42-gcc-19b5557958cb9bbd029abb9c3005e0f6d5530cf9.zip | |
Warning fixes:
* except.c (build_eh_type_type_ref): Remove unused variable `susp'.
(process_start_catch_block): Likewise for variables
`false_label_rtx', `call_rtx' and `return_value_rtx'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20800 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/cp/except.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index edc78a5cbed..f44d3ab8537 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +Mon Jun 29 20:17:40 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * except.c (build_eh_type_type_ref): Remove unused variable `susp'. + (process_start_catch_block): Likewise for variables + `false_label_rtx', `call_rtx' and `return_value_rtx'. + 1998-06-29 Brendan Kehoe <brendan@cygnus.com> * tree.c (build_srcloc): Make sure we allocate this node on the diff --git a/gcc/cp/except.c b/gcc/cp/except.c index 4139dfdaeb0..bc5379af4d1 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -424,7 +424,6 @@ build_eh_type_type_ref (type) { char *typestring; tree exp; - int susp; if (type == error_mark_node) return error_mark_node; @@ -728,7 +727,6 @@ static void process_start_catch_block (declspecs, declarator) tree declspecs, declarator; { - rtx false_label_rtx; tree decl = NULL_TREE; tree init; @@ -758,7 +756,6 @@ process_start_catch_block (declspecs, declarator) if (decl) { tree exp; - rtx call_rtx, return_value_rtx; tree init_type; /* Make sure we mark the catch param as used, otherwise we'll get |

