* 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
+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>
* fixinc/server.c (load_data): Return NULL if the marker line is
mark_regs_live_at_end (set)
regset set;
{
- tree result, type;
int i;
/* If exiting needs the right stack value, consider the stack pointer
unsigned int i;
/* Clear the statistics. */
- bzero (&stats, sizeof (stats));
+ memset (&stats, 0, sizeof (stats));
/* Make sure collection will really occur. */
G.allocated_last_gc = 0;
{
rtx loc, seq;
int size = get_func_frame_size (DECL_SAVED_INSNS (map->fndecl));
+#ifdef FRAME_GROWS_DOWNWARD
int alignment
= (DECL_SAVED_INSNS (map->fndecl)->stack_alignment_needed
/ BITS_PER_UNIT);
-#ifdef FRAME_GROWS_DOWNWARD
/* In this case, virtual_stack_vars_rtx points to one byte
higher than the top of the frame area. So make sure we
allocate a big enough chunk to keep the frame pointer
int dont_jump_in;
{
register struct nesting *thisblock;
- register tree decl;
while (block_stack->data.block.exception_region)
{
static void
iteration_info (loop, iteration_var, initial_value, increment)
- const struct loop *loop;
+ const struct loop *loop ATTRIBUTE_UNUSED;
rtx iteration_var, *initial_value, *increment;
{
struct iv_class *bl;