Commit 3f2eae23 by Jan Hubicka Committed by Jan Hubicka

* gcse.c (insert_store): Fix typo in previous patch.

From-SVN: r69977
parent 675eab74
Thu Jul 31 01:04:19 CEST 2003 Jan Hubicka <jh@suse.cz>
* gcse.c (insert_store): Fix typo in previous patch.
2003-07-30 Neil Booth <neil@daikokuya.co.uk> 2003-07-30 Neil Booth <neil@daikokuya.co.uk>
* cppfiles.c (stack_file, open_file_failed): Use path for deps. * cppfiles.c (stack_file, open_file_failed): Use path for deps.
......
...@@ -7506,7 +7506,7 @@ insert_store (struct ls_expr * expr, edge e) ...@@ -7506,7 +7506,7 @@ insert_store (struct ls_expr * expr, edge e)
edges so we don't try to insert it on the other edges. */ edges so we don't try to insert it on the other edges. */
bb = e->dest; bb = e->dest;
for (tmp = e->dest->pred; tmp ; tmp = tmp->pred_next) for (tmp = e->dest->pred; tmp ; tmp = tmp->pred_next)
if (!tmp->flags & EDGE_FAKE) if (!(tmp->flags & EDGE_FAKE))
{ {
int index = EDGE_INDEX (edge_list, tmp->src, tmp->dest); int index = EDGE_INDEX (edge_list, tmp->src, tmp->dest);
if (index == EDGE_INDEX_NO_EDGE) if (index == EDGE_INDEX_NO_EDGE)
......
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