Commit f5989b06 by Jakub Jelinek Committed by Jakub Jelinek

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: r212582
parent 3defdb14
2014-07-16 Jakub Jelinek <jakub@redhat.com>
* omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
on the FUNCTION_DECL.
2014-07-16 Richard Biener <rguenther@suse.de> 2014-07-16 Richard Biener <rguenther@suse.de>
PR other/61782 PR other/61782
......
...@@ -1872,7 +1872,6 @@ create_omp_child_function (omp_context *ctx, bool task_copy) ...@@ -1872,7 +1872,6 @@ create_omp_child_function (omp_context *ctx, bool task_copy)
TREE_STATIC (decl) = 1; TREE_STATIC (decl) = 1;
TREE_USED (decl) = 1; TREE_USED (decl) = 1;
DECL_ARTIFICIAL (decl) = 1; DECL_ARTIFICIAL (decl) = 1;
DECL_NAMELESS (decl) = 1;
DECL_IGNORED_P (decl) = 0; DECL_IGNORED_P (decl) = 0;
TREE_PUBLIC (decl) = 0; TREE_PUBLIC (decl) = 0;
DECL_UNINLINABLE (decl) = 1; DECL_UNINLINABLE (decl) = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment