OSDN Git Service

* gcse.c (insert_store): Fix typo in previous patch.
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jul 2003 23:05:43 +0000 (23:05 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 Jul 2003 23:05:43 +0000 (23:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69977 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gcse.c

index 4321a20..44eb8c0 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 a8bb453..e8c5f9a 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)