From: Jan Hubicka Date: Wed, 30 Jul 2003 23:05:43 +0000 (+0200) Subject: * gcse.c (insert_store): Fix typo in previous patch. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f2eae23b35c4116315c45678eafa3be48eb79c7;p=gcc.git * gcse.c (insert_store): Fix typo in previous patch. From-SVN: r69977 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4321a207e24..44eb8c08e15 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Jul 31 01:04:19 CEST 2003 Jan Hubicka + + * gcse.c (insert_store): Fix typo in previous patch. + 2003-07-30 Neil Booth * cppfiles.c (stack_file, open_file_failed): Use path for deps. diff --git a/gcc/gcse.c b/gcc/gcse.c index a8bb4533b8d..e8c5f9a7929 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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. */ bb = e->dest; 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); if (index == EDGE_INDEX_NO_EDGE)