From: Douglas B Rupp Date: Wed, 29 Jul 2009 20:55:49 +0000 (+0000) Subject: dwarf2out.c (add_name_and_src_coords_attributes): Push on the correct stack (obvious... X-Git-Tag: releases/gcc-4.5.0~4280 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82b75b46d7b535a9eee84de71db697c0132d0be4;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0e3a8d089710..90db5bfbcc2d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-07-29 Douglas B Rupp + + * dwarf2out.c (add_name_and_src_coords_attributes): Push on the + correct stack (obvious VMS fix). + 2009-07-29 Douglas B Rupp * dwarf2out.c (output_file_names): Output VMS style file name, size, diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 58a257d3b71d..fe7b72de7a02 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -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 }