diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2017-06-11 01:07:11 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2017-06-10 23:07:11 +0000 |
commit | 1511c8c005d91ff2af7010d852fe83bdde0fd3f3 (patch) | |
tree | 198bd5ad2351d27130053b58e510149c5894f984 /gcc/cgraph.h | |
parent | 9a58d6cdbf24c9680f70ff84b21749f5aa1c196f (diff) | |
download | gcc-1511c8c005d91ff2af7010d852fe83bdde0fd3f3.zip gcc-1511c8c005d91ff2af7010d852fe83bdde0fd3f3.tar.gz gcc-1511c8c005d91ff2af7010d852fe83bdde0fd3f3.tar.bz2 |
cgraph.h (cgraph_edge::clone): Update prototype.
* cgraph.h (cgraph_edge::clone): Update prototype.
* cgraphclones.c (cgraph_edge::clone): Update profile scaling.
(cgraph_node::create_clone): Update.
(cgraph_node::create_version_clone): Update.
* tree-inline.c (copy_bb): Update.
(expand_call_inline): Update.
From-SVN: r249097
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 82a84ea..57cdaa4 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -1649,7 +1649,7 @@ struct GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"), /* Create clone of edge in the node N represented by CALL_EXPR the callgraph. */ cgraph_edge * clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid, - gcov_type count_scale, int freq_scale, + profile_count num, profile_count den, int freq_scale, bool update_original); /* Verify edge count and frequency. */ |