From: Aldy Hernandez Date: Tue, 11 Mar 2003 02:01:41 +0000 (+0000) Subject: * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31ca36354cc71e3fd29f94c1c981bf162e4de711;p=gcc.git * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko. From-SVN: r64158 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c0cadc5e15c..c907889c8b9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-03-10 Aldy Hernandez + + * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko. + 2003-03-10 Andrew Pinski * config/darwin.c (machopic_function_base_name): If dynamic-no-pic diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index c2aa5b11d35..445f325fde6 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -8219,10 +8219,10 @@ multiple_reg_loc_descriptor (rtl, regs) { dw_loc_descr_ref t; - ++reg; t = one_reg_loc_descriptor (reg); add_loc_descr (&loc_result, t); add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0)); + ++reg; } return loc_result; }