diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-06-15 14:15:26 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2010-06-15 14:15:26 +0200 |
commit | 79943d19dc27298a384fce25c604fe6191e0765f (patch) | |
tree | 160e18b4ba214f50eed4f22ee4c8e9a0dff923af /gcc/langhooks.h | |
parent | eed5f58ad65fc65af6d50e263a632537c9478b26 (diff) | |
download | gcc-79943d19dc27298a384fce25c604fe6191e0765f.zip gcc-79943d19dc27298a384fce25c604fe6191e0765f.tar.gz gcc-79943d19dc27298a384fce25c604fe6191e0765f.tar.bz2 |
re PR fortran/44536 (OMP: missing error with default(none))
PR fortran/44536
* langhooks.h (struct lang_hooks_for_decls): Add omp_report_decl.
* langhooks-def.h (LANG_HOOKS_OMP_REPORT_DECL): Define.
(LANG_HOOKS_DECLS): Add it.
* gimplify.c (omp_notice_variable): Call
lang_hooks.decls.omp_report_decl.
* trans-openmp.c (gfc_omp_predetermined_sharing): Don't return
OMP_CLAUSE_DEFAULT_SHARED for artificial vars with
GFC_DECL_SAVED_DESCRIPTOR set.
(gfc_omp_report_decl): New function.
* trans.h (gfc_omp_report_decl): New prototype.
* f95-lang.c (LANG_HOOKS_OMP_REPORT_DECL): Redefine.
* gfortran.dg/gomp/pr44536.f90: New test.
* gfortran.dg/gomp/sharing-3.f90: Remove xfail.
From-SVN: r160779
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index c0744e8..535529a 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -195,6 +195,10 @@ struct lang_hooks_for_decls predetermined, OMP_CLAUSE_DEFAULT_UNSPECIFIED otherwise. */ enum omp_clause_default_kind (*omp_predetermined_sharing) (tree); + /* Return decl that should be reported for DEFAULT(NONE) failure + diagnostics. Usually the DECL passed in. */ + tree (*omp_report_decl) (tree); + /* Return true if DECL's DECL_VALUE_EXPR (if any) should be disregarded in OpenMP construct, because it is going to be remapped during OpenMP lowering. SHARED is true if DECL |