Commit d0902cd1 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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'.

From-SVN: r20800
parent 174be1b3
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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment