Commit d219c7f1 by Kaveh R. Ghazi Committed by Kaveh Ghazi

flow.c (mark_regs_live_at_end): Delete unused variables.

        * flow.c (mark_regs_live_at_end): Delete unused variables.

        * ggc-page.c (ggc_page_print_statistics): bzero -> memset.

        * integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
        in macro FRAME_GROWS_DOWNWARD.

        * stmt.c (expand_end_bindings): Delete unused variable.

        * unroll.c (iteration_info): Mark parameter `loop' with
        ATTRIBUTE_UNUSED.

From-SVN: r31895
parent d1922b48
2000-02-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* flow.c (mark_regs_live_at_end): Delete unused variables.
* ggc-page.c (ggc_page_print_statistics): bzero -> memset.
* integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
in macro FRAME_GROWS_DOWNWARD.
* stmt.c (expand_end_bindings): Delete unused variable.
* unroll.c (iteration_info): Mark parameter `loop' with
ATTRIBUTE_UNUSED.
2000-02-10 Alexandre Oliva <oliva@lsd.ic.unicamp.br> 2000-02-10 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* fixinc/server.c (load_data): Return NULL if the marker line is * fixinc/server.c (load_data): Return NULL if the marker line is
......
...@@ -2821,7 +2821,6 @@ static void ...@@ -2821,7 +2821,6 @@ static void
mark_regs_live_at_end (set) mark_regs_live_at_end (set)
regset set; regset set;
{ {
tree result, type;
int i; int i;
/* If exiting needs the right stack value, consider the stack pointer /* If exiting needs the right stack value, consider the stack pointer
......
...@@ -1157,7 +1157,7 @@ ggc_page_print_statistics () ...@@ -1157,7 +1157,7 @@ ggc_page_print_statistics ()
unsigned int i; unsigned int i;
/* Clear the statistics. */ /* Clear the statistics. */
bzero (&stats, sizeof (stats)); memset (&stats, 0, sizeof (stats));
/* Make sure collection will really occur. */ /* Make sure collection will really occur. */
G.allocated_last_gc = 0; G.allocated_last_gc = 0;
......
...@@ -1625,11 +1625,11 @@ copy_rtx_and_substitute (orig, map, for_lhs) ...@@ -1625,11 +1625,11 @@ copy_rtx_and_substitute (orig, map, for_lhs)
{ {
rtx loc, seq; rtx loc, seq;
int size = get_func_frame_size (DECL_SAVED_INSNS (map->fndecl)); int size = get_func_frame_size (DECL_SAVED_INSNS (map->fndecl));
#ifdef FRAME_GROWS_DOWNWARD
int alignment int alignment
= (DECL_SAVED_INSNS (map->fndecl)->stack_alignment_needed = (DECL_SAVED_INSNS (map->fndecl)->stack_alignment_needed
/ BITS_PER_UNIT); / BITS_PER_UNIT);
#ifdef FRAME_GROWS_DOWNWARD
/* In this case, virtual_stack_vars_rtx points to one byte /* In this case, virtual_stack_vars_rtx points to one byte
higher than the top of the frame area. So make sure we higher than the top of the frame area. So make sure we
allocate a big enough chunk to keep the frame pointer allocate a big enough chunk to keep the frame pointer
......
...@@ -3561,7 +3561,6 @@ expand_end_bindings (vars, mark_ends, dont_jump_in) ...@@ -3561,7 +3561,6 @@ expand_end_bindings (vars, mark_ends, dont_jump_in)
int dont_jump_in; int dont_jump_in;
{ {
register struct nesting *thisblock; register struct nesting *thisblock;
register tree decl;
while (block_stack->data.block.exception_region) while (block_stack->data.block.exception_region)
{ {
......
...@@ -2427,7 +2427,7 @@ biv_total_increment (bl) ...@@ -2427,7 +2427,7 @@ biv_total_increment (bl)
static void static void
iteration_info (loop, iteration_var, initial_value, increment) iteration_info (loop, iteration_var, initial_value, increment)
const struct loop *loop; const struct loop *loop ATTRIBUTE_UNUSED;
rtx iteration_var, *initial_value, *increment; rtx iteration_var, *initial_value, *increment;
{ {
struct iv_class *bl; struct iv_class *bl;
......
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