simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than simplify_gen_subreg.
gcc/ * simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than simplify_gen_subreg. From-SVN: r119380
This commit is contained in:
parent
d71176b6ad
commit
e25615581d
@ -1,3 +1,8 @@
|
||||
2006-11-30 Richard Sandiford <richard@codesourcery.com>
|
||||
|
||||
* simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than
|
||||
simplify_gen_subreg.
|
||||
|
||||
2006-11-30 Andrew Macleod <amacleod@redhat.com>
|
||||
|
||||
* tree-ssa-live.c (create_coalesce_list): Create a hash table.
|
||||
|
@ -4853,9 +4853,9 @@ simplify_rtx (rtx x)
|
||||
|
||||
case RTX_EXTRA:
|
||||
if (code == SUBREG)
|
||||
return simplify_gen_subreg (mode, SUBREG_REG (x),
|
||||
GET_MODE (SUBREG_REG (x)),
|
||||
SUBREG_BYTE (x));
|
||||
return simplify_subreg (mode, SUBREG_REG (x),
|
||||
GET_MODE (SUBREG_REG (x)),
|
||||
SUBREG_BYTE (x));
|
||||
break;
|
||||
|
||||
case RTX_OBJ:
|
||||
|
Loading…
x
Reference in New Issue
Block a user