diff options
author | Jakub Jelinek <jakub@redhat.com> | 2014-07-16 10:31:22 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2014-07-16 10:31:22 +0200 |
commit | f5989b06ef51140202bbdf2cc5d10b7dc5c77bc4 (patch) | |
tree | 27f3e4b5f11aea0b1c78aea4b77e7a5ef8f5c364 /gcc | |
parent | 3defdb14996a8256c017ea31f2d2649fbe7156ab (diff) | |
download | gcc-f5989b06ef51140202bbdf2cc5d10b7dc5c77bc4.zip gcc-f5989b06ef51140202bbdf2cc5d10b7dc5c77bc4.tar.gz gcc-f5989b06ef51140202bbdf2cc5d10b7dc5c77bc4.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/omp-low.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a44f48..11d7551 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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> PR other/61782 diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 6888378..1b1cf2c 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -1872,7 +1872,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; |