diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2010-08-20 14:42:28 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2010-08-20 07:42:28 -0700 |
commit | 2429bce332b3042b6a6c0e670414de9c079ef5fb (patch) | |
tree | e7ef8c3d86b9a2780dfaea64a56c1d68a699cc86 /gcc/lto | |
parent | e0f967db8d196869652da602a6e1a16f4c3696e7 (diff) | |
download | gcc-2429bce332b3042b6a6c0e670414de9c079ef5fb.zip gcc-2429bce332b3042b6a6c0e670414de9c079ef5fb.tar.gz gcc-2429bce332b3042b6a6c0e670414de9c079ef5fb.tar.bz2 |
Replace has_analyzed_clone with has_analyzed_clone_p.
2010-08-20 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/45357
* lto.c (lto_materialize_function): Replace has_analyzed_clone
with has_analyzed_clone_p.
From-SVN: r163405
Diffstat (limited to 'gcc/lto')
-rw-r--r-- | gcc/lto/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/lto/lto.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index cc33720..daaae9a 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,9 @@ +2010-08-20 H.J. Lu <hongjiu.lu@intel.com> + + PR bootstrap/45357 + * lto.c (lto_materialize_function): Replace has_analyzed_clone + with has_analyzed_clone_p. + 2010-08-20 Jan Hubicka <jh@suse.cz> * lto.c (has_analyzed_clone_p): New function diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 28885ce..a9c5dd3 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -158,7 +158,7 @@ lto_materialize_function (struct cgraph_node *node) decl = node->decl; /* Read in functions with body (analyzed nodes) and also functions that are needed to produce virtual clones. */ - if (node->analyzed || has_analyzed_clone (node)) + if (node->analyzed || has_analyzed_clone_p (node)) { /* This function has a definition. */ TREE_STATIC (decl) = 1; |