mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
39d44c531f
commit
99e18f02b6
|
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2016-01-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||||
|
|
||||||
* config/arm/arm.c (thumb1_reorg): Check that the comparison is
|
* 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;
|
int i = 0;
|
||||||
rtx prev_base = NULL_RTX;
|
rtx prev_base = NULL_RTX;
|
||||||
int min_offset;
|
int min_offset = 0;
|
||||||
int max_offset;
|
int max_offset = 0;
|
||||||
|
|
||||||
for (i = 0; i < n_elems; i++)
|
for (i = 0; i < n_elems; i++)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue