From 355fe0884b8097c32e859f0df57c83bde0c6bd26 Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Sun, 20 Sep 2015 00:52:59 +0000 Subject: switch from gimple to gimple* This renames the gimple_statement_base struct to gimple removes the typedef of gimple_statement_base * to gimple, and then adjusts all of the places that use the type. gcc/ChangeLog: 2015-09-19 Trevor Saunders * coretypes.h (gimple): Change typedef to be a forward declaration. * gimple.h (gimple_statement_base): rename to gimple. * (all functions and types using gimple): Adjust. * *.[ch]: Likewise. gcc/cp/ChangeLog: 2015-09-19 Trevor Saunders * cp-gimplify.c (gimplify_must_not_throw_expr): Adjust. From-SVN: r227941 --- gcc/tree-ssanames.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/tree-ssanames.c') diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c index 910cb19..4199290 100644 --- a/gcc/tree-ssanames.c +++ b/gcc/tree-ssanames.c @@ -120,7 +120,7 @@ ssanames_print_statistics (void) used without a preceding definition). */ tree -make_ssa_name_fn (struct function *fn, tree var, gimple stmt) +make_ssa_name_fn (struct function *fn, tree var, gimple *stmt) { tree t; use_operand_p imm; @@ -437,7 +437,7 @@ get_ptr_info (tree t) statement STMT in function FN. */ tree -copy_ssa_name_fn (struct function *fn, tree name, gimple stmt) +copy_ssa_name_fn (struct function *fn, tree name, gimple *stmt) { tree new_name; @@ -505,7 +505,7 @@ duplicate_ssa_name_range_info (tree name, enum value_range_type range_type, in function FN. */ tree -duplicate_ssa_name_fn (struct function *fn, tree name, gimple stmt) +duplicate_ssa_name_fn (struct function *fn, tree name, gimple *stmt) { tree new_name = copy_ssa_name_fn (fn, name, stmt); if (POINTER_TYPE_P (TREE_TYPE (name))) @@ -548,7 +548,7 @@ reset_flow_sensitive_info (tree name) /* Release all the SSA_NAMEs created by STMT. */ void -release_defs (gimple stmt) +release_defs (gimple *stmt) { tree def; ssa_op_iter iter; -- cgit v1.1