diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-09-03 14:33:09 +0000 | 
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-09-03 14:33:09 +0000 | 
| commit | e892ccec0d3c3c471cc2d7feac41bdbf1e630502 (patch) | |
| tree | 4de74742e83ce691b21c9a9627bb864096f293d9 /clang/tools/libclang | |
| parent | 8a9f07626f3f8ea1c2a2ccc8825ba70a4e8b9272 (diff) | |
| download | bcm5719-llvm-e892ccec0d3c3c471cc2d7feac41bdbf1e630502.tar.gz bcm5719-llvm-e892ccec0d3c3c471cc2d7feac41bdbf1e630502.zip  | |
Revert "OpenMP: Data-sharing attributes analysis and clause 'shared'"
This reverts commit r189795.
threadprivate_messages.cpp is faling on windows.
llvm-svn: 189811
Diffstat (limited to 'clang/tools/libclang')
| -rw-r--r-- | clang/tools/libclang/CIndex.cpp | 3 | ||||
| -rw-r--r-- | clang/tools/libclang/RecursiveASTVisitor.h | 6 | 
2 files changed, 0 insertions, 9 deletions
diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp index cb85123ed74..765c9000121 100644 --- a/clang/tools/libclang/CIndex.cpp +++ b/clang/tools/libclang/CIndex.cpp @@ -1936,9 +1936,6 @@ void OMPClauseEnqueue::VisitOMPDefaultClause(const OMPDefaultClause *C) { }  void OMPClauseEnqueue::VisitOMPPrivateClause(const OMPPrivateClause *C) {    PROCESS_OMP_CLAUSE_LIST(OMPPrivateClause, C)  } -void OMPClauseEnqueue::VisitOMPSharedClause(const OMPSharedClause *C) { -  PROCESS_OMP_CLAUSE_LIST(OMPSharedClause, C) -}  #undef PROCESS_OMP_CLAUSE_LIST  }  void EnqueueVisitor::EnqueueChildren(const OMPClause *S) { diff --git a/clang/tools/libclang/RecursiveASTVisitor.h b/clang/tools/libclang/RecursiveASTVisitor.h index 4d2b3a98409..701de899913 100644 --- a/clang/tools/libclang/RecursiveASTVisitor.h +++ b/clang/tools/libclang/RecursiveASTVisitor.h @@ -2337,12 +2337,6 @@ bool RecursiveASTVisitor<Derived>::VisitOMPPrivateClause(OMPPrivateClause *C) {    return true;  } -template<typename Derived> -bool RecursiveASTVisitor<Derived>::VisitOMPSharedClause(OMPSharedClause *C) { -  PROCESS_OMP_CLAUSE_LIST(OMPSharedClause, C) -  return true; -} -  #undef PROCESS_OMP_CLAUSE_LIST  // FIXME: look at the following tricky-seeming exprs to see if we  | 

