Commit 82b75b46 by Douglas B Rupp Committed by Douglas Rupp

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
parent c848dd9b
2009-07-29 Douglas B Rupp <rupp@gnat.com> 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, * dwarf2out.c (output_file_names): Output VMS style file name, size,
date, version info if VMS_DEBUGGING_INFO defined. date, version info if VMS_DEBUGGING_INFO defined.
* vmsdgbout.c (vms_file_stats_name): New functon. VMS style file name, * vmsdgbout.c (vms_file_stats_name): New functon. VMS style file name,
......
...@@ -13348,7 +13348,7 @@ add_name_and_src_coords_attributes (dw_die_ref die, tree decl) ...@@ -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, add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
XEXP (DECL_RTL (decl), 0)); 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 #endif
} }
......
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