diff options
author | Jakub Jelinek <jakub@redhat.com> | 2018-01-25 16:32:02 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2018-01-25 16:32:02 +0100 |
commit | 3d8fb311338b191231790252e91889984995055c (patch) | |
tree | ea08e295ac3e2e477df6b91ded05628b494e5109 /gcc/omp-simd-clone.c | |
parent | 58078de77b2b22bb36d28daf2a7fe79397d5f057 (diff) | |
download | gcc-3d8fb311338b191231790252e91889984995055c.zip gcc-3d8fb311338b191231790252e91889984995055c.tar.gz gcc-3d8fb311338b191231790252e91889984995055c.tar.bz2 |
re PR middle-end/83977 (ICE in simd_clone_clauses_extract, at omp-simd-clone.c:184)
PR middle-end/83977
* ipa-fnsummary.c (compute_fn_summary): Clear can_change_signature
on functions with #pragma omp declare simd or functions with simd
attribute.
* omp-simd-clone.c (expand_simd_clones): Revert 2018-01-24 change.
* config/i386/i386.c (ix86_simd_clone_compute_vecsize_and_simdlen):
Remove trailing \n from warning_at calls.
* c-c++-common/gomp/pr83977-1.c: Add -w to dg-options.
From-SVN: r257051
Diffstat (limited to 'gcc/omp-simd-clone.c')
-rw-r--r-- | gcc/omp-simd-clone.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/omp-simd-clone.c b/gcc/omp-simd-clone.c index fbcb92b..b7737a2 100644 --- a/gcc/omp-simd-clone.c +++ b/gcc/omp-simd-clone.c @@ -1574,10 +1574,6 @@ expand_simd_clones (struct cgraph_node *node) tree attr = lookup_attribute ("omp declare simd", DECL_ATTRIBUTES (node->decl)); if (attr == NULL_TREE - /* Ignore artificial decls with an abstract origin, results of function - cloning, versioning etc. We want to handle certain builtins - with simd attribute, like __builtin_sin. */ - || (DECL_ARTIFICIAL (node->decl) && DECL_ABSTRACT_ORIGIN (node->decl)) || node->global.inlined_to || lookup_attribute ("noclone", DECL_ATTRIBUTES (node->decl))) return; |