* dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.

From-SVN: r64158
This commit is contained in:
Aldy Hernandez 2003-03-11 02:01:41 +00:00 committed by Aldy Hernandez
parent ab82a49f4e
commit 31ca36354c
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-03-10 Aldy Hernandez <aldyh@redhat.com>
* dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
2003-03-10 Andrew Pinski <apinski@apple.com>
* config/darwin.c (machopic_function_base_name): If dynamic-no-pic

View File

@ -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;
}