diff options
author | Douglas B Rupp <rupp@gnat.com> | 2009-07-29 20:55:49 +0000 |
---|---|---|
committer | Douglas Rupp <rupp@gcc.gnu.org> | 2009-07-29 20:55:49 +0000 |
commit | 82b75b46d7b535a9eee84de71db697c0132d0be4 (patch) | |
tree | 97c8730a658f53c5f24eecb0bd64f7b06c45b125 /gcc | |
parent | c848dd9bca25bbd856449776b73f8549c2de70d1 (diff) | |
download | gcc-82b75b46d7b535a9eee84de71db697c0132d0be4.zip gcc-82b75b46d7b535a9eee84de71db697c0132d0be4.tar.gz gcc-82b75b46d7b535a9eee84de71db697c0132d0be4.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0e3a8d0..90db5bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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, date, version info if VMS_DEBUGGING_INFO defined. * vmsdgbout.c (vms_file_stats_name): New functon. VMS style file name, diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 58a257d..fe7b72d 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 } |