dwarf2out.c (expand_builtin_dwarf_reg_size): Use FIRST_PSEUDO_REGISTER as upper bound for last_end, not an arbitrary constant.

* dwarf2out.c (expand_builtin_dwarf_reg_size): Use
	FIRST_PSEUDO_REGISTER as upper bound for last_end, not an
	arbitrary constant.

From-SVN: r22722
This commit is contained in:
David S. Miller 1998-10-01 18:02:50 +00:00 committed by David S. Miller
parent da6558fd77
commit 23e0871671
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Thu Oct 1 17:58:25 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
* dwarf2out.c (expand_builtin_dwarf_reg_size): Use
FIRST_PSEUDO_REGISTER as upper bound for last_end, not an
arbitrary constant.
Thu Oct 1 17:57:14 1998 Nick Clifton <nickc@cygnus.com>
* config/arm/arm.c: Improve interworking support.

View File

@ -642,7 +642,7 @@ expand_builtin_dwarf_reg_size (reg_tree, target)
}
else
{
int last_end = 100;
int last_end = FIRST_PSEUDO_REGISTER;
--n_ranges;
t = build_int_2 (ranges[n_ranges].size, 0);
do