From: Martin Jambor Date: Wed, 14 May 2014 15:32:31 +0000 (+0200) Subject: re PR gcov-profile/60897 (Mangled function name in warning during -fprofile-use phase... X-Git-Tag: releases/gcc-5.1.0~7587 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70d6d5c1d32999ec004a0d9c24cc26eff4df6a95;p=thirdparty%2Fgcc.git re PR gcov-profile/60897 (Mangled function name in warning during -fprofile-use phase of Firefox build) 2014-05-14 Martin Jambor PR ipa/60897 * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC. From-SVN: r210426 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c3b3e82a9c06..bd0894d6eab7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-05-14 Martin Jambor + + PR ipa/60897 + * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC. + 2014-05-14 James Norris * omp-low.c (expand_parallel_call): Remove shadow variable. diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index da6ffe861693..f4b9b3bdd7f4 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -3650,6 +3650,7 @@ ipa_modify_formal_parameters (tree fndecl, ipa_parm_adjustment_vec adjustments) TREE_TYPE (fndecl) = new_type; DECL_VIRTUAL_P (fndecl) = 0; + DECL_LANG_SPECIFIC (fndecl) = NULL; otypes.release (); oparms.release (); }