diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2017-07-29 01:39:25 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2017-07-29 01:39:25 +0000 |
commit | 22a7303de24b120c7124d0b2a4ad778bd452319e (patch) | |
tree | c9a03c87a549406f3b2cbb4dcdc28eebcf3920f1 /gcc/rtl.c | |
parent | 84c2ad2314c126204e29700f59004392fc5ac3cc (diff) | |
download | gcc-22a7303de24b120c7124d0b2a4ad778bd452319e.zip gcc-22a7303de24b120c7124d0b2a4ad778bd452319e.tar.gz gcc-22a7303de24b120c7124d0b2a4ad778bd452319e.tar.bz2 |
replace shallow_copy_rtx_stat with c++
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
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |