dwarf2out.c (add_name_and_src_coords_attributes): Push on the correct stack (obvious VMS fix).

* dwarf2out.c (add_name_and_src_coords_attributes): Push on the
	correct stack (obvious VMS fix).

From-SVN: r150227
This commit is contained in:
Douglas B Rupp 2009-07-29 20:55:49 +00:00 committed by Douglas Rupp
parent c848dd9bca
commit 82b75b46d7
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-07-29 Douglas B Rupp <rupp@gnat.com>
* dwarf2out.c (add_name_and_src_coords_attributes): Push on the
correct stack (obvious VMS fix).
2009-07-29 Douglas B Rupp <rupp@gnat.com>
* dwarf2out.c (output_file_names): Output VMS style file name, size,

View file

@ -13348,7 +13348,7 @@ add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
{
add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
XEXP (DECL_RTL (decl), 0));
VEC_safe_push (tree, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
VEC_safe_push (rtx, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
}
#endif
}