2001-04-10 Andrew MacLeod <amacleod@redhat.com>
* function.c (purge_single_hard_subreg_set): Only check REGNO if
the subreg was a hard register. Pseudos are left as subregs.
From-SVN: r41217
+2001-04-10 Andrew MacLeod <amacleod@redhat.com>
+
+ * function.c (purge_single_hard_subreg_set): Only check REGNO if
+ the subreg was a hard register. Pseudos are left as subregs.
+
2001-04-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* Makefile.in (LIB2FUNCS_STATIC_EXTRA): New macro.
}
- if (REGNO (reg) < FIRST_PSEUDO_REGISTER)
+ if (GET_CODE (reg) == REG && REGNO (reg) < FIRST_PSEUDO_REGISTER)
{
reg = gen_rtx_REG (mode, REGNO (reg) + offset);
SET_DEST (pattern) = reg;