diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-06 13:59:18 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-06 13:59:18 +0000 |
commit | f852c2394a13248eab64af4cd5cbecb50f2e2dd4 (patch) | |
tree | 794aefb50dd552dc8a0007d142ef18e7439f1fdc | |
parent | 5510bd70c572a590cfdc04a275cdd40c80901b6c (diff) | |
download | gcc-f852c2394a13248eab64af4cd5cbecb50f2e2dd4.tar.gz |
2014-08-06 Martin Jambor <mjambor@suse.cz>
PR ipa/61393
* cgraphclones.c (cgraph_node::create_clone): Also copy tm_clone.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213666 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphclones.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3891aecd0de..741f0ac7521 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-08-06 Martin Jambor <mjambor@suse.cz> + + PR ipa/61393 + * cgraphclones.c (cgraph_node::create_clone): Also copy tm_clone. + 2014-08-06 Richard Biener <rguenther@suse.de> PR lto/62034 diff --git a/gcc/cgraphclones.c b/gcc/cgraphclones.c index f097da8b22d..c04b5c819fd 100644 --- a/gcc/cgraphclones.c +++ b/gcc/cgraphclones.c @@ -423,6 +423,7 @@ cgraph_node::create_clone (tree decl, gcov_type gcov_count, int freq, new_node->count = count; new_node->frequency = frequency; new_node->tp_first_run = tp_first_run; + new_node->tm_clone = tm_clone; new_node->clone.tree_map = NULL; new_node->clone.args_to_skip = args_to_skip; |