From: Richard Henderson Date: Tue, 23 Nov 2004 23:03:15 +0000 (-0800) Subject: simplify-rtx.c (simplify_subreg): Use subreg_regno_offset directly instead of using... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4488a8b8769d54a19634d22c42bd9ec111a89be5;p=gcc.git simplify-rtx.c (simplify_subreg): Use subreg_regno_offset directly instead of using a SUBREG temporary. * simplify-rtx.c (simplify_subreg): Use subreg_regno_offset directly instead of using a SUBREG temporary. From-SVN: r91114 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a16e9b6f041..9752df3b6ee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-23 Richard Henderson + + * simplify-rtx.c (simplify_subreg): Use subreg_regno_offset directly + instead of using a SUBREG temporary. + 2004-11-23 Kazu Hirata * tree-cfg.c (tree_forwarder_block_p): Speed up by reordering diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index ac896ab27ab..8ecd8fc5528 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -3675,14 +3675,15 @@ simplify_subreg (enum machine_mode outermode, rtx op, && subreg_offset_representable_p (REGNO (op), innermode, byte, outermode)) { - rtx tem = gen_rtx_SUBREG (outermode, op, byte); - int final_regno = subreg_hard_regno (tem, 0); + unsigned int regno = REGNO (op); + unsigned int final_regno + = regno + subreg_regno_offset (regno, innermode, byte, outermode); /* ??? We do allow it if the current REG is not valid for its mode. This is a kludge to work around how float/complex arguments are passed on 32-bit SPARC and should be fixed. */ if (HARD_REGNO_MODE_OK (final_regno, outermode) - || ! HARD_REGNO_MODE_OK (REGNO (op), innermode)) + || ! HARD_REGNO_MODE_OK (regno, innermode)) { rtx x = gen_rtx_REG_offset (op, outermode, final_regno, byte);