aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2017-07-29 01:39:17 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2017-07-29 01:39:17 +0000
commit84c2ad2314c126204e29700f59004392fc5ac3cc (patch)
tree7869e47428f64410f142d991cb44c4a1fc8b9266 /gcc/rtl.h
parent623ee2853e067f8f5c18b5673b57dc64d0684864 (diff)
downloadgcc-84c2ad2314c126204e29700f59004392fc5ac3cc.zip
gcc-84c2ad2314c126204e29700f59004392fc5ac3cc.tar.gz
gcc-84c2ad2314c126204e29700f59004392fc5ac3cc.tar.bz2
replace rtx_alloc_stat with c++
gcc/ChangeLog: 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * emit-rtl.c (gen_raw_REG): Adjust. * gengenrtl.c (gendef): Likewise. * rtl.c (rtx_alloc_stat): Remove _stat from name. * rtl.h (rtx_alloc): Remove macro. From-SVN: r250707
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index e63dcf0..1f4b641 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -2705,8 +2705,7 @@ extern HOST_WIDE_INT trunc_int_for_mode (HOST_WIDE_INT, machine_mode);
extern rtx plus_constant (machine_mode, rtx, HOST_WIDE_INT, bool = false);
/* In rtl.c */
-extern rtx rtx_alloc_stat (RTX_CODE MEM_STAT_DECL);
-#define rtx_alloc(c) rtx_alloc_stat (c MEM_STAT_INFO)
+extern rtx rtx_alloc (RTX_CODE CXX_MEM_STAT_INFO);
extern rtx rtx_alloc_stat_v (RTX_CODE MEM_STAT_DECL, int);
#define rtx_alloc_v(c, SZ) rtx_alloc_stat_v (c MEM_STAT_INFO, SZ)
#define const_wide_int_alloc(NWORDS) \