diff options
author | Jan Hubicka <jh@suse.cz> | 2002-09-30 21:35:17 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-09-30 19:35:17 +0000 |
commit | 344b78b848693ada74b0ce238153c86fdf02ee09 (patch) | |
tree | 935edce515bf5aaa1706595857265e30bbcf42c7 /gcc/unroll.c | |
parent | 5a9a196102ff0d1bf27831e0ce396049cc334db8 (diff) | |
download | gcc-344b78b848693ada74b0ce238153c86fdf02ee09.tar.gz |
reload.c (push_reload): Handle subregs and secondary memory.
* reload.c (push_reload): Handle subregs and secondary memory.
* reload1.c (gen_reload): Likewise.
* jump.c (reg_or_subregno): New function.
* rtl.h (reg_or_subregno): Declare
* unroll.c (find_splittable_givs): Handle subregs.
From-SVN: r57663
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 126b586808d..a1b02873043 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -2822,7 +2822,7 @@ find_splittable_givs (loop, bl, unroll_type, increment, unroll_number) value = tem; } - splittable_regs[REGNO (v->new_reg)] = value; + splittable_regs[reg_or_subregno (v->new_reg)] = value; } else continue; @@ -2856,7 +2856,7 @@ find_splittable_givs (loop, bl, unroll_type, increment, unroll_number) if (! v->ignore) count = REG_IV_CLASS (ivs, REGNO (v->src_reg))->biv_count; - splittable_regs_updates[REGNO (v->new_reg)] = count; + splittable_regs_updates[reg_or_subregno (v->new_reg)] = count; } result++; |