From: H.J. Lu Date: Fri, 20 Aug 2010 14:42:28 +0000 (+0000) Subject: Replace has_analyzed_clone with has_analyzed_clone_p. X-Git-Tag: releases/gcc-4.6.0~4912 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2429bce332b3042b6a6c0e670414de9c079ef5fb;p=thirdparty%2Fgcc.git Replace has_analyzed_clone with has_analyzed_clone_p. 2010-08-20 H.J. Lu PR bootstrap/45357 * lto.c (lto_materialize_function): Replace has_analyzed_clone with has_analyzed_clone_p. From-SVN: r163405 --- diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index cc337201d8e3..daaae9aa0e54 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,9 @@ +2010-08-20 H.J. Lu + + PR bootstrap/45357 + * lto.c (lto_materialize_function): Replace has_analyzed_clone + with has_analyzed_clone_p. + 2010-08-20 Jan Hubicka * lto.c (has_analyzed_clone_p): New function diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index 28885ce0356d..a9c5dd399e25 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;