aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/clang-cc/AnalysisConsumer.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/clang-cc/AnalysisConsumer.cpp b/tools/clang-cc/AnalysisConsumer.cpp
index f19ff1787e..4594a71492 100644
--- a/tools/clang-cc/AnalysisConsumer.cpp
+++ b/tools/clang-cc/AnalysisConsumer.cpp
@@ -460,10 +460,14 @@ void AnalysisConsumer::HandleTranslationUnit(TranslationUnit& TU) {
(*I)(mgr);
}
- if (!ObjCImplementationActions.empty())
- for (TranslationUnit::iterator I = TU.begin(), E = TU.end(); I!=E; ++I)
+ if (!ObjCImplementationActions.empty()) {
+ TranslationUnitDecl *TUD = TU.getContext().getTranslationUnitDecl();
+
+ for (DeclContext::decl_iterator I = TUD->decls_begin(),E = TUD->decls_end();
+ I != E; ++I)
if (ObjCImplementationDecl* ID = dyn_cast<ObjCImplementationDecl>(*I))
HandleCode(ID, 0, ObjCImplementationActions);
+ }
// Delete the PathDiagnosticClient here just in case the AnalysisConsumer
// object doesn't get released. This will cause any side-effects in the