* gcse.c (insert_store): Fix typo in previous patch.
authorJan Hubicka <jh@suse.cz>
Wed, 30 Jul 2003 23:05:43 +0000 (01:05 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Wed, 30 Jul 2003 23:05:43 +0000 (23:05 +0000)
From-SVN: r69977

gcc/ChangeLog
gcc/gcse.c

index 4321a207e243fa0d23342da24b13be1e411b338c..44eb8c08e156c84242029680abe2a0f48b34b2c5 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
        * cppfiles.c (stack_file, open_file_failed): Use path for deps.
index a8bb4533b8d5c1d079dab3c7224eb26e36b80c32..e8c5f9a792911d41742c0c2f10c8db32df43cf5f 100644 (file)
@@ -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)