replace shallow_copy_rtx_stat with c++
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>
Sat, 29 Jul 2017 01:39:25 +0000 (01:39 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Sat, 29 Jul 2017 01:39:25 +0000 (01:39 +0000)
gcc/ChangeLog:

2017-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* rtl.c (shallow_copy_rtx_stat): Remove _stat from name.
* rtl.h (shallow_copy_rtx): Remove macro.

From-SVN: r250708

gcc/ChangeLog
gcc/rtl.c
gcc/rtl.h

index e369dd5cbf96a4132e805fc98f08fe8a02d0796a..7e3ea64df5d72fd101748613deaf8dd6b5e455c5 100644 (file)
@@ -1,3 +1,8 @@
+2017-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
+
+       * rtl.c (shallow_copy_rtx_stat): Remove _stat from name.
+       * rtl.h (shallow_copy_rtx): Remove macro.
+
 2017-07-28  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
 
        * emit-rtl.c (gen_raw_REG): Adjust.
index b91172f63fa93675c236f498947affc1c03198d4..b0f977eca9c2416c4743638d8cd4f49ea528f643 100644 (file)
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -359,7 +359,7 @@ copy_rtx (rtx orig)
 /* Create a new copy of an rtx.  Only copy just one level.  */
 
 rtx
-shallow_copy_rtx_stat (const_rtx orig MEM_STAT_DECL)
+shallow_copy_rtx (const_rtx orig MEM_STAT_DECL)
 {
   const unsigned int size = rtx_size (orig);
   rtx const copy = ggc_alloc_rtx_def_stat (size PASS_MEM_STAT);
index 1f4b6413ca13cd1e4007bfa5c779b04b756e314a..8a68bb152bc980a2d1604141e412459b8e8bc437 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -2725,8 +2725,7 @@ extern rtx copy_rtx_if_shared (rtx);
 
 /* In rtl.c */
 extern unsigned int rtx_size (const_rtx);
-extern rtx shallow_copy_rtx_stat (const_rtx MEM_STAT_DECL);
-#define shallow_copy_rtx(a) shallow_copy_rtx_stat (a MEM_STAT_INFO)
+extern rtx shallow_copy_rtx (const_rtx CXX_MEM_STAT_INFO);
 extern int rtx_equal_p (const_rtx, const_rtx);
 extern bool rtvec_all_equal_p (const_rtvec);