diff options
author | Devin Coughlin <dcoughlin@apple.com> | 2016-07-28 00:52:10 +0000 |
---|---|---|
committer | Devin Coughlin <dcoughlin@apple.com> | 2016-07-28 00:52:10 +0000 |
commit | e434fc479b69877584b45dd3756db963ebe6eff5 (patch) | |
tree | 77c5a1e6fd343039f49a43c7f0fb0f153a6ad3e2 | |
parent | 6fbf18ca243935e6baf7cf7df99aa59d90410d5b (diff) | |
download | bcm5719-llvm-e434fc479b69877584b45dd3756db963ebe6eff5.tar.gz bcm5719-llvm-e434fc479b69877584b45dd3756db963ebe6eff5.zip |
[analyzer] Add check::BeginFunction to CheckerDocumentation checks. NFC.
This was an oversight from when I added BeginFunction support in r261293.
llvm-svn: 276950
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp b/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp index 74d05e27e8e..86764c939dc 100644 --- a/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp @@ -45,6 +45,7 @@ class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>, check::Location, check::Bind, check::DeadSymbols, + check::BeginFunction, check::EndFunction, check::EndAnalysis, check::EndOfTranslationUnit, |