OSDN Git Service

* gcse.c (compute_can_copy): Adjust if/else blocks from rth's
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Mar 2000 03:43:03 +0000 (03:43 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Mar 2000 03:43:03 +0000 (03:43 +0000)
patch from 2000-01-28.

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

gcc/ChangeLog
gcc/gcse.c

index 3c8feb5..57b863a 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-06  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
+
+       * gcse.c (compute_can_copy): Adjust if/else blocks from rth's
+       patch from 2000-01-28.
+
 2000-03-06  Clinton Popetz  <cpopetz@cygnus.com>
 
        * config/sh/sh.c: (barrier_align): Handle a delay slot that is
index be18214..aaa2f6d 100644 (file)
@@ -837,9 +837,9 @@ compute_can_copy ()
        if (recog (PATTERN (insn), insn, NULL_PTR) >= 0)
          can_copy_p[i] = 1;
 #endif
-       else
-         can_copy_p[i] = 1;
       }
+    else
+      can_copy_p[i] = 1;
 
   end_sequence ();