From: John Carr Date: Sat, 3 Oct 1998 13:21:10 +0000 (+0000) Subject: dwarf2out.c (expand_builtin_dwarf_reg_size): Initialize last_end to 0x7fffffff. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=69fba03777153dc075f7339ad8042c5ff7a45c56;p=gcc.git dwarf2out.c (expand_builtin_dwarf_reg_size): Initialize last_end to 0x7fffffff. From-SVN: r22790 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index efcfefa0829..cc989876c85 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sat Oct 3 16:14:44 1998 John Carr + + * dwarf2out.c (expand_builtin_dwarf_reg_size): Initialize + last_end to 0x7fffffff. + Fri Oct 2 19:14:20 1998 David S. Miller * function.c (purge_addressof_1): Do not perform endianness diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 9531509d300..21367bb26c0 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -642,7 +642,9 @@ expand_builtin_dwarf_reg_size (reg_tree, target) } else { - int last_end = FIRST_PSEUDO_REGISTER; + /* Initialize last_end to be larger than any possible + DWARF_FRAME_REGNUM. */ + int last_end = 0x7fffffff; --n_ranges; t = build_int_2 (ranges[n_ranges].size, 0); do