OSDN Git Service

* emit-rtl.c (try_split): Fixed error in Oct 10 patch.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Nov 1998 17:21:52 +0000 (17:21 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Nov 1998 17:21:52 +0000 (17:21 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23524 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/emit-rtl.c

index 6570255..2f74c18 100644 (file)
@@ -1,3 +1,7 @@
+Wed Nov  4 18:16:29 1998 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl> 
+
+       * emit-rtl.c (try_split): Fixed error in Oct 10 patch.
+
 Wed Nov  4 15:11:15 1998  Geoffrey Noer  <noer@cygnus.com>
 
        * i386/cygwin32.h (MASK_WIN32, MASK_CYGWIN, MASK_WINDOWS, MASK_DLL,
index df3a5a9..6f34788 100644 (file)
@@ -2275,7 +2275,7 @@ try_split (pat, trial, last)
             immediately before a BARRIER.  */
          for (tem = NEXT_INSN (before); tem != after;
               tem = NEXT_INSN (tem))
-           if (! INSN_DELETED_P (tem) && ! GET_CODE (tem) == BARRIER)
+           if (! INSN_DELETED_P (tem) && GET_CODE (tem) != BARRIER)
              tem = try_split (PATTERN (tem), tem, 1);
        }
       /* Avoid infinite loop if the result matches the original pattern.  */