diff options
author | Richard Guenther <rguenther@suse.de> | 2012-09-18 09:17:27 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-09-18 09:17:27 +0000 |
commit | 73804b1224ace0833dfc0e628aa4b0727e7a0451 (patch) | |
tree | f0f26ed65c436f49ceac348ef7b52caed61b31c0 /gcc/gimple.h | |
parent | c0558468b815e60a5d6d1d48e3a966010cb460f2 (diff) | |
download | gcc-73804b1224ace0833dfc0e628aa4b0727e7a0451.tar.gz |
statistics.h (CXX_MEM_STAT_INFO): New define.
2012-09-18 Richard Guenther <rguenther@suse.de>
* statistics.h (CXX_MEM_STAT_INFO): New define.
* gimple.h (gimple_build_assign_with_ops_stat,
gimple_build_assign_with_ops, gimple_build_assign_with_ops3):
Turn into an overload of the function gimple_build_assign_with_ops.
* gimple.c (gimple_build_assign_with_ops_stat): Rename to ...
(gimple_build_assign_with_ops): ... this.
* tree-ssa-loop-im.c (move_computations_stmt): Adjust.
* tree-ssa-math-opts.c (convert_mult_to_fma): Likewise.
* tree-vect-data-refs.c (vect_permute_store_chain): Likewise.
(vect_permute_load_chain): Likewise.
* tree-vect-generic.c (expand_vector_divmod): Likewise.
* tree-vect-patterns.c (vect_recog_dot_prod_pattern): Likewise.
(vect_recog_divmod_pattern): Likewise.
(vect_recog_mixed_size_cond_pattern): Likewise.
(adjust_bool_pattern): Likewise.
* tree-vect-slp.c (vect_create_mask_and_perm): Likewise.
* tree-vect-stmts.c (vectorizable_operation): Likewise.
(permute_vec_elements): Likewise.
(vectorizable_load): Likewise.
From-SVN: r191415
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index 797cd944450..58696896050 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -744,12 +744,12 @@ gimple gimple_build_assign_stat (tree, tree MEM_STAT_DECL); void extract_ops_from_tree_1 (tree, enum tree_code *, tree *, tree *, tree *); -gimple gimple_build_assign_with_ops_stat (enum tree_code, tree, tree, - tree, tree MEM_STAT_DECL); -#define gimple_build_assign_with_ops(c,o1,o2,o3) \ - gimple_build_assign_with_ops_stat (c, o1, o2, o3, NULL_TREE MEM_STAT_INFO) -#define gimple_build_assign_with_ops3(c,o1,o2,o3,o4) \ - gimple_build_assign_with_ops_stat (c, o1, o2, o3, o4 MEM_STAT_INFO) +gimple +gimple_build_assign_with_ops (enum tree_code, tree, + tree, tree CXX_MEM_STAT_INFO); +gimple +gimple_build_assign_with_ops (enum tree_code, tree, + tree, tree, tree CXX_MEM_STAT_INFO); gimple gimple_build_debug_bind_stat (tree, tree, gimple MEM_STAT_DECL); #define gimple_build_debug_bind(var,val,stmt) \ |