]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
dwarf2out.c (add_name_and_src_coords_attributes): Push on the correct stack (obvious...
authorDouglas B Rupp <rupp@gnat.com>
Wed, 29 Jul 2009 20:55:49 +0000 (20:55 +0000)
committerDouglas Rupp <rupp@gcc.gnu.org>
Wed, 29 Jul 2009 20:55:49 +0000 (20:55 +0000)
* dwarf2out.c (add_name_and_src_coords_attributes): Push on the
correct stack (obvious VMS fix).

From-SVN: r150227

gcc/ChangeLog
gcc/dwarf2out.c

index 0e3a8d0897107a4d682ed7aae41a31d72d6c4b9b..90db5bfbcc2d4f94823e5e9d0a76e9f1d0e50592 100644 (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,
index 58a257d3b71d5be743c8da484e13c18206965c4a..fe7b72de7a02afaf64dfe7cb927c79d5af3a7a3f 100644 (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
 }