diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-16 00:08:04 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-16 00:08:04 +0000 |
commit | 8e731e4e6c726902636988784d45e79183f7dcc4 (patch) | |
tree | b6e45f956da2645fff833e4102ce64a0965586c1 /gcc/profile.c | |
parent | a62346841c154b7ca97071aa107a690c051e89e5 (diff) | |
download | gcc-8e731e4e6c726902636988784d45e79183f7dcc4.tar.gz |
tree-cfg.c (bsi_commit_edge_inserts): Remove an argument.
* tree-cfg.c (bsi_commit_edge_inserts): Remove an argument.
(tree_flow_call_edges_add): Update the call to
bsi_commit_edge_inserts.
* lambda-code.c (lambda_loopnest_to_gcc_loopnest): Likewise.
* profile.c (branch_prob): Likewise.
* tree-mudflap.c (mf_decl_cache_locals): Likewise.
* tree-sra.c (scalarize_function): Likewise.
* tree-ssa-loop-im.c (loop_commit_inserts): Likewise.
* tree-ssa-pre.c (fini_pre): Likewise.
* tree-flow.h: Update the prototype for
bsi_commit_edge_inserts.
From-SVN: r90704
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 5a0cc60cfdc..93d79d03b50 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -1109,7 +1109,7 @@ branch_prob (void) /* Commit changes done by instrumentation. */ if (ir_type ()) - bsi_commit_edge_inserts ((int *)NULL); + bsi_commit_edge_inserts (); else { commit_edge_insertions_watch_calls (); |