From dcc815d015bc23a4badd40f591a2937252a32cd8 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Wed, 2 May 2018 17:39:00 +0000 Subject: [PATCH] [OPENMP] Do not emit warning for implicitly declared target functions. Since upcoming OpenMP 5.0 functions can be mapped implicitly as declare target and we should not emit warnings for such functions. llvm-svn: 331377 --- clang/lib/Sema/SemaOpenMP.cpp | 30 ++++++++++++++------------- clang/test/OpenMP/declare_target_messages.cpp | 4 ++-- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/clang/lib/Sema/SemaOpenMP.cpp b/clang/lib/Sema/SemaOpenMP.cpp index 896954f..832f03b 100644 --- a/clang/lib/Sema/SemaOpenMP.cpp +++ b/clang/lib/Sema/SemaOpenMP.cpp @@ -12964,21 +12964,23 @@ static void checkDeclInTargetContext(SourceLocation SL, SourceRange SR, if (LD && !LD->hasAttr() && ((isa(LD) && !isa(LD)) || isa(LD))) { // Outlined declaration is not declared target. - if (LD->isOutOfLine()) { - SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context); - SemaRef.Diag(SL, diag::note_used_here) << SR; - } else { - const DeclContext *DC = LD->getDeclContext(); - while (DC && - (!isa(DC) || - !cast(DC)->hasAttr())) - DC = DC->getParent(); - if (DC) - return; + if (!isa(LD)) { + if (LD->isOutOfLine()) { + SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context); + SemaRef.Diag(SL, diag::note_used_here) << SR; + } else { + const DeclContext *DC = LD->getDeclContext(); + while (DC && + (!isa(DC) || + !cast(DC)->hasAttr())) + DC = DC->getParent(); + if (DC) + return; - // Is not declared in target context. - SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context); - SemaRef.Diag(SL, diag::note_used_here) << SR; + // Is not declared in target context. + SemaRef.Diag(LD->getLocation(), diag::warn_omp_not_in_target_context); + SemaRef.Diag(SL, diag::note_used_here) << SR; + } } // Mark decl as declared target to prevent further diagnostic. auto *A = OMPDeclareTargetDeclAttr::CreateImplicit( diff --git a/clang/test/OpenMP/declare_target_messages.cpp b/clang/test/OpenMP/declare_target_messages.cpp index 72ea33c..c8e73f6 100644 --- a/clang/test/OpenMP/declare_target_messages.cpp +++ b/clang/test/OpenMP/declare_target_messages.cpp @@ -19,7 +19,7 @@ void f(); #pragma omp declare target link(foo2) // expected-error {{use of undeclared identifier 'foo2'}} -void c(); // expected-warning {{declaration is not declared in any declare target region}} +void c(); void func() {} // expected-note {{'func' defined here}} @@ -98,7 +98,7 @@ void foo(int p) { g += object.method1(); g += object1.method() + p; f(); - c(); // expected-note {{used here}} + c(); } #pragma omp declare target // expected-error {{expected '#pragma omp end declare target'}} void foo1() {} -- 2.7.4