Commit 99e18f02 by Jakub Jelinek Committed by Jakub Jelinek

haifa-sched.c (autopref_multipass_init): Work around -Wmaybe-uninitialized warning.

	* haifa-sched.c (autopref_multipass_init): Work around
	-Wmaybe-uninitialized warning.

From-SVN: r232495
parent 39d44c53
2016-01-18 Jakub Jelinek <jakub@redhat.com>
* haifa-sched.c (autopref_multipass_init): Work around
-Wmaybe-uninitialized warning.
2016-01-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
* config/arm/arm.c (thumb1_reorg): Check that the comparison is
......
......@@ -5599,8 +5599,8 @@ autopref_multipass_init (const rtx_insn *insn, int write)
int i = 0;
rtx prev_base = NULL_RTX;
int min_offset;
int max_offset;
int min_offset = 0;
int max_offset = 0;
for (i = 0; i < n_elems; i++)
{
......
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