mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-04 05:39:36 +08:00
combine.c (combine_simplify_rtx): Can't simplify cases that use mode class MODE_CC.
2001-11-30 Alan Matsuoka <alanm@redhat.com> * combine.c (combine_simplify_rtx) : Can't simplify cases that use mode class MODE_CC. From-SVN: r47917
This commit is contained in:
parent
a8c7e72da2
commit
a13287e15d
@ -1,3 +1,8 @@
|
||||
2001-11-30 Alan Matsuoka <alanm@redhat.com>
|
||||
|
||||
* combine.c (combine_simplify_rtx) : Can't simplify
|
||||
cases that use mode class MODE_CC.
|
||||
|
||||
2001-12-11 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* expmed.c (expand_divmod): Ignore sdiv_pow2_cheap for modes in
|
||||
|
@ -3796,6 +3796,8 @@ combine_simplify_rtx (x, op0_mode, last, in_dest)
|
||||
&& subreg_lowpart_offset (mode, op0_mode) == SUBREG_BYTE (x))
|
||||
return gen_lowpart_for_combine (mode, SUBREG_REG (x));
|
||||
|
||||
if (GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_CC)
|
||||
break;
|
||||
{
|
||||
rtx temp;
|
||||
temp = simplify_subreg (mode, SUBREG_REG (x), op0_mode,
|
||||
|
Loading…
Reference in New Issue
Block a user