]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS on the FUNCTION_DECL.
authorJakub Jelinek <jakub@redhat.com>
Wed, 16 Jul 2014 08:39:23 +0000 (10:39 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 16 Jul 2014 08:39:23 +0000 (10:39 +0200)
* omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
on the FUNCTION_DECL.

From-SVN: r212583

gcc/ChangeLog
gcc/omp-low.c

index a050b7a9e304297e9eb22f5f830b12822a7a525f..0d4902fae387686fbd0ea0ac65ab9771ed917a8d 100644 (file)
@@ -1,3 +1,8 @@
+2014-07-18  Jakub Jelinek  <jakub@redhat.com>
+
+       * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
+       on the FUNCTION_DECL.
+
 2014-07-10  Tom G. Christensen  <tgc@jupiterrise.com>
 
        * doc/install.texi: Remove links to defunct package providers for
index 95d1168617bef7be1b029d8721fbfcd05de8ab30..49fadc3a699797aa953af1459cab50d5706bff3b 100644 (file)
@@ -1586,7 +1586,6 @@ create_omp_child_function (omp_context *ctx, bool task_copy)
   TREE_STATIC (decl) = 1;
   TREE_USED (decl) = 1;
   DECL_ARTIFICIAL (decl) = 1;
-  DECL_NAMELESS (decl) = 1;
   DECL_IGNORED_P (decl) = 0;
   TREE_PUBLIC (decl) = 0;
   DECL_UNINLINABLE (decl) = 1;