aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>2017-07-29 01:39:42 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2017-07-29 01:39:42 +0000
commit59cdeebcbe85bd9bd94a15f5a768f06c8d013fe2 (patch)
tree837121044dcc55f7a9241095a980b7bacbdb37ae /gcc/gimple.c
parent2a1a5f3080f67d7a613adf836e3120d891705aae (diff)
downloadgcc-59cdeebcbe85bd9bd94a15f5a768f06c8d013fe2.zip
gcc-59cdeebcbe85bd9bd94a15f5a768f06c8d013fe2.tar.gz
gcc-59cdeebcbe85bd9bd94a15f5a768f06c8d013fe2.tar.bz2
use c++ for gimple_build_debug_bind{,_source}
gcc/ChangeLog: 2017-07-28 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> * gimple.c (gimple_build_debug_bind_stat): Remove _stat from name. (gimple_build_debug_bind_source_stat): Likewise. * gimple.h (gimple_build_debug_bind): Remove macro. (gimple_build_debug_bind_source): Likewise. From-SVN: r250711
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r--gcc/gimple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c
index 13a6828..3a32b53 100644
--- a/gcc/gimple.c
+++ b/gcc/gimple.c
@@ -796,7 +796,7 @@ gimple_build_eh_dispatch (int region)
VAR is bound to VALUE; block and location are taken from STMT. */
gdebug *
-gimple_build_debug_bind_stat (tree var, tree value, gimple *stmt MEM_STAT_DECL)
+gimple_build_debug_bind (tree var, tree value, gimple *stmt MEM_STAT_DECL)
{
gdebug *p
= as_a <gdebug *> (gimple_build_with_ops_stat (GIMPLE_DEBUG,
@@ -816,7 +816,7 @@ gimple_build_debug_bind_stat (tree var, tree value, gimple *stmt MEM_STAT_DECL)
VAR is bound to VALUE; block and location are taken from STMT. */
gdebug *
-gimple_build_debug_source_bind_stat (tree var, tree value,
+gimple_build_debug_source_bind (tree var, tree value,
gimple *stmt MEM_STAT_DECL)
{
gdebug *p