diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-03-19 14:46:26 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-03-19 07:46:26 -0700 |
commit | 58929c1068f0550be90d3921305b14fb3dc37132 (patch) | |
tree | e3e92a6212d307ee3042dee013e7cb0497328d5d /gcc/reginfo.c | |
parent | 234952b3832aa8dd302680b1b51a0645b3c2f90f (diff) | |
download | gcc-58929c1068f0550be90d3921305b14fb3dc37132.tar.gz |
reginfo.c (globalize_reg): Recompute derived reg sets.
2009-03-19 Alexandre Oliva <aoliva@redhat.com>
* reginfo.c (globalize_reg): Recompute derived reg sets.
From-SVN: r144964
Diffstat (limited to 'gcc/reginfo.c')
-rw-r--r-- | gcc/reginfo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/reginfo.c b/gcc/reginfo.c index 51e69f7f79e..e579c281aa3 100644 --- a/gcc/reginfo.c +++ b/gcc/reginfo.c @@ -875,6 +875,8 @@ globalize_reg (int i) SET_HARD_REG_BIT (fixed_reg_set, i); SET_HARD_REG_BIT (call_used_reg_set, i); SET_HARD_REG_BIT (call_fixed_reg_set, i); + + reinit_regs (); } |