Commit 31ca3635 by Aldy Hernandez Committed by Aldy Hernandez

* dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.

From-SVN: r64158
parent ab82a49f
2003-03-10 Aldy Hernandez <aldyh@redhat.com>
* dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
2003-03-10 Andrew Pinski <apinski@apple.com> 2003-03-10 Andrew Pinski <apinski@apple.com>
* config/darwin.c (machopic_function_base_name): If dynamic-no-pic * config/darwin.c (machopic_function_base_name): If dynamic-no-pic
......
...@@ -8219,10 +8219,10 @@ multiple_reg_loc_descriptor (rtl, regs) ...@@ -8219,10 +8219,10 @@ multiple_reg_loc_descriptor (rtl, regs)
{ {
dw_loc_descr_ref t; dw_loc_descr_ref t;
++reg;
t = one_reg_loc_descriptor (reg); t = one_reg_loc_descriptor (reg);
add_loc_descr (&loc_result, t); add_loc_descr (&loc_result, t);
add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0)); add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
++reg;
} }
return loc_result; return loc_result;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment