mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 13:34:30 +08:00
* simplify-rtx.c (simplify_gen_subreg): Return null for QUEUED rtxes.
From-SVN: r43933
This commit is contained in:
parent
4a1b6176b8
commit
bd77ba510b
@ -1,3 +1,7 @@
|
||||
2001-07-11 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* simplify-rtx.c (simplify_gen_subreg): Return null for QUEUED rtxes.
|
||||
|
||||
2001-07-11 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* config/mips/mips.c (gen_int_relational): Tell the caller not to
|
||||
|
@ -2446,6 +2446,9 @@ simplify_gen_subreg (outermode, op, innermode, byte)
|
||||
|| byte >= GET_MODE_SIZE (innermode))
|
||||
abort ();
|
||||
|
||||
if (GET_CODE (op) == QUEUED)
|
||||
return NULL_RTX;
|
||||
|
||||
new = simplify_subreg (outermode, op, innermode, byte);
|
||||
if (new)
|
||||
return new;
|
||||
|
Loading…
Reference in New Issue
Block a user