OSDN Git Service

* gcse.c (bypass_block): Fix a typo in the previous check-in
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jan 2004 18:22:16 +0000 (18:22 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jan 2004 18:22:16 +0000 (18:22 +0000)
to the file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76981 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gcse.c

index 986c1c7..bb3578e 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcse.c (bypass_block): Fix a typo in the previous check-in
+       to the file.
+
 2004-01-30  Andrew Pinski <pinskia@physics.uc.edu>
 
        * toplev.c: Include alloc-pool.h.
index c2d7d5f..b61ee8c 100644 (file)
@@ -4878,7 +4878,7 @@ bypass_block (basic_block bb, rtx setcc, rtx jump)
             branch.  We would end up emitting the instruction on "both"
             edges.  */
            
-         if (dest && setcc && !CC0_P (SET_DEST (pat)))
+         if (dest && setcc && !CC0_P (SET_DEST (PATTERN (setcc))))
            {
              edge e2;
              for (e2 = e->src->succ; e2; e2 = e2->succ_next)