Commit a93049de by Herman A.J. ten Brugge Committed by Jeff Law

* emit-rtl.c (try_split): Fixed error in Oct 10 patch.

From-SVN: r23524
parent 040688bd
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,
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment