re PR gcov-profile/60897 (Mangled function name in warning during -fprofile-use phase...
authorMartin Jambor <mjambor@suse.cz>
Wed, 14 May 2014 15:32:31 +0000 (17:32 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Wed, 14 May 2014 15:32:31 +0000 (17:32 +0200)
2014-05-14  Martin Jambor  <mjambor@suse.cz>

PR ipa/60897
* ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC.

From-SVN: r210426

gcc/ChangeLog
gcc/ipa-prop.c

index c3b3e82..bd0894d 100644 (file)
@@ -1,3 +1,8 @@
+2014-05-14  Martin Jambor  <mjambor@suse.cz>
+
+       PR ipa/60897
+       * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC.
+
 2014-05-14  James Norris  <jnorris@codesourcery.com>
 
        * omp-low.c (expand_parallel_call): Remove shadow variable.
index da6ffe8..f4b9b3b 100644 (file)
@@ -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 ();
 }