Commit 427188d5 by Sebastian Pop Committed by Sebastian Pop

Fix bootstrap at -O3.

2010-05-24  Sebastian Pop  <sebastian.pop@amd.com>

	* function.c (assign_stack_local_1): Initialize variable
	to avoid warning when bootstrapping at -O3.

From-SVN: r159797
parent 96ee6e08
2010-05-24 Sebastian Pop <sebastian.pop@amd.com>
* function.c (assign_stack_local_1): Initialize variable
to avoid warning when bootstrapping at -O3.
2010-05-24 Steven Bosscher <steven@gcc.gnu.org>
* configure.ac (all_lang_makefiles): Remove everything related to it.
......
......@@ -367,7 +367,7 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size,
{
rtx x, addr;
int bigend_correction = 0;
HOST_WIDE_INT slot_offset, old_frame_offset;
HOST_WIDE_INT slot_offset = 0, old_frame_offset;
unsigned int alignment, alignment_in_bits;
if (align == 0)
......
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