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:
parent
da6558fd77
commit
23e0871671
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user