Fix typo that disabled loop unrolling for many targets.
* loop.c (get_condition): Fix typo in May 9 change. From-SVN: r22650
This commit is contained in:
parent
1f6b0ce0c5
commit
dc5737cfe7
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Sep 29 20:03:18 1998 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* loop.c (get_condition): Fix typo in May 9 change.
|
||||
|
||||
Tue Sep 29 11:11:38 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
|
||||
|
||||
* invoke.texi (-fexceptions): Merge 2 different descriptions.
|
||||
|
|
|
@ -7831,7 +7831,7 @@ get_condition (jump, earliest)
|
|||
))
|
||||
&& GET_RTX_CLASS (GET_CODE (SET_SRC (set))) == '<'))
|
||||
&& ((GET_MODE_CLASS (mode) == MODE_CC)
|
||||
!= (GET_MODE_CLASS (inner_mode) == MODE_CC)))
|
||||
== (GET_MODE_CLASS (inner_mode) == MODE_CC)))
|
||||
x = SET_SRC (set);
|
||||
else if (((code == EQ
|
||||
|| (code == GE
|
||||
|
@ -7849,7 +7849,7 @@ get_condition (jump, earliest)
|
|||
))
|
||||
&& GET_RTX_CLASS (GET_CODE (SET_SRC (set))) == '<'
|
||||
&& ((GET_MODE_CLASS (mode) == MODE_CC)
|
||||
!= (GET_MODE_CLASS (inner_mode) == MODE_CC)))
|
||||
== (GET_MODE_CLASS (inner_mode) == MODE_CC)))
|
||||
{
|
||||
/* We might have reversed a LT to get a GE here. But this wasn't
|
||||
actually the comparison of data, so we don't flag that we
|
||||
|
|
Loading…
Add table
Reference in a new issue