From: Jakub Jelinek Date: Wed, 16 Jul 2014 08:39:23 +0000 (+0200) Subject: omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS on the FUNCTION_DECL. X-Git-Tag: releases/gcc-4.8.4~358 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49e578347cd666e55ed2e1f5470d6f169b3a5e49;p=thirdparty%2Fgcc.git omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS on the FUNCTION_DECL. * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS on the FUNCTION_DECL. From-SVN: r212583 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a050b7a9e304..0d4902fae387 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-07-18 Jakub Jelinek + + * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS + on the FUNCTION_DECL. + 2014-07-10 Tom G. Christensen * doc/install.texi: Remove links to defunct package providers for diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 95d1168617be..49fadc3a6997 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -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;