Commit 43997658 by Jan Hubicka Committed by Jan Hubicka

* haifa-sched.c (choose_ready): Initialize index.

From-SVN: r72756
parent 064ee155
2003-10-21 Jan Hubicka <jh@suse.cz>
* haifa-sched.c (choose_ready): Initialize index.
2003-10-21 Jason Merrill <jason@redhat.com> 2003-10-21 Jason Merrill <jason@redhat.com>
* tree.c (build1): Fix off-by-one error. * tree.c (build1): Fix off-by-one error.
......
2003-10-21 Jan Hubicka <jh@suse.cz>
* lex.c (ffelex_cfelex_): Initialize d.
Mon Oct 20 23:15:46 2003 Mark Mitchell <mark@codesourcery.com> Mon Oct 20 23:15:46 2003 Mark Mitchell <mark@codesourcery.com>
* Make-lang.in ($(docobjdir)/g77.info): Add dependency on * Make-lang.in ($(docobjdir)/g77.info): Add dependency on
......
...@@ -721,7 +721,7 @@ ffelex_cfelex_ (ffelexToken *xtoken, FILE *finput, int c) ...@@ -721,7 +721,7 @@ ffelex_cfelex_ (ffelexToken *xtoken, FILE *finput, int c)
{ {
bool done = FALSE; bool done = FALSE;
int use_d = 0; int use_d = 0;
int d; int d = 0;
switch (c) switch (c)
{ {
......
...@@ -2201,7 +2201,7 @@ choose_ready (struct ready_list *ready) ...@@ -2201,7 +2201,7 @@ choose_ready (struct ready_list *ready)
else else
{ {
/* Try to choose the better insn. */ /* Try to choose the better insn. */
int index, i; int index = 0, i;
rtx insn; rtx insn;
if (cached_first_cycle_multipass_dfa_lookahead != lookahead) if (cached_first_cycle_multipass_dfa_lookahead != lookahead)
......
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