Commit 1c50a20a by Andrew Pinski Committed by Andrew Pinski

cfgexpand.c (dump_stack_var_partition): Use the correct index for the offset.

2007-09-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        * cfgexpand.c (dump_stack_var_partition): Use the correct
        index for the offset.

From-SVN: r128607
parent 4f3f76e6
2007-09-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
* cfgexpand.c (dump_stack_var_partition): Use the correct
index for the offset.
2007-09-19 Joseph Myers <joseph@codesourcery.com>
* config/mips/sde.h: Switch to GPLv3.
......@@ -512,7 +512,7 @@ dump_stack_var_partition (void)
fputc ('\t', dump_file);
print_generic_expr (dump_file, stack_vars[j].decl, dump_flags);
fprintf (dump_file, ", offset " HOST_WIDE_INT_PRINT_DEC "\n",
stack_vars[i].offset);
stack_vars[j].offset);
}
}
}
......
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