gcse.c (hoist_expr_reaches_here_p): Do not mark expr_bb as visited before visiting it.
2000-11-21 Diego Novillo <dnovillo@redhat.com> * gcse.c (hoist_expr_reaches_here_p): Do not mark expr_bb as visited before visiting it. From-SVN: r37627
This commit is contained in:
parent
819004bbd0
commit
d1cc928a7b
@ -1,3 +1,8 @@
|
|||||||
|
2000-11-21 Diego Novillo <dnovillo@redhat.com>
|
||||||
|
|
||||||
|
* gcse.c (hoist_expr_reaches_here_p): Do not mark expr_bb as
|
||||||
|
visited before visiting it.
|
||||||
|
|
||||||
2000-11-21 Nick Clifton <nickc@redhat.com>
|
2000-11-21 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* config/arm/arm.h: Accept TARGET_CPU_arm9tdmi,
|
* config/arm/arm.h: Accept TARGET_CPU_arm9tdmi,
|
||||||
|
@ -5327,7 +5327,6 @@ hoist_expr_reaches_here_p (expr_bb, expr_index, bb, visited)
|
|||||||
visited = xcalloc (n_basic_blocks, 1);
|
visited = xcalloc (n_basic_blocks, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
visited[expr_bb] = 1;
|
|
||||||
for (pred = BASIC_BLOCK (bb)->pred; pred != NULL; pred = pred->pred_next)
|
for (pred = BASIC_BLOCK (bb)->pred; pred != NULL; pred = pred->pred_next)
|
||||||
{
|
{
|
||||||
int pred_bb = pred->src->index;
|
int pred_bb = pred->src->index;
|
||||||
|
Loading…
Reference in New Issue
Block a user