diff options
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index a45119a647e..03806be2fa8 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2636,8 +2636,7 @@ alter_subreg (rtx *xp) else { /* Simplify_subreg can't handle some REG cases, but we have to. */ - unsigned int regno = subreg_hard_regno (x, 1); - + unsigned int regno = subreg_regno (x); gcc_assert (REG_P (y)); *xp = gen_rtx_REG_offset (y, GET_MODE (x), regno, SUBREG_BYTE (x)); } |