Commit 8deb7557 authored by rakdver's avatar rakdver
Browse files

* sched-rgn.c (find_rgns): Initialize current_edge correctly.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69595 138bc75d-0d04-0410-961f-82ee72b054a4
parent f908ce67
2003-07-19 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* sched-rgn.c (find_rgns): Initialize current_edge correctly.
2003-07-19 Phil Edwards <pme@gcc.gnu.org>
* doc/makefile.texi (restrap, profiledbootstrap): Document targets.
......
......@@ -618,7 +618,8 @@ find_rgns (struct edge_list *edge_list, dominance_info dom)
int *max_hdr, *dfs_nr, *stack, *degree;
char no_loops = 1;
int node, child, loop_head, i, head, tail;
int count = 0, sp, idx = 0, current_edge = out_edges[0];
int count = 0, sp, idx = 0;
int current_edge = out_edges[ENTRY_BLOCK_PTR->succ->dest->index];
int num_bbs, num_insns, unreachable;
int too_large_failure;
basic_block bb;
......
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