diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-07-25 23:23:17 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-07-25 23:23:17 +0000 |
| commit | 3c7223837a9c795f3c2c010269ba05860288fb52 (patch) | |
| tree | 848451ec1997ffedcce79df6a222d112814a4d5b | |
| parent | d4fbe4fe82e3b59d92603216b22ca1cfcc6eeee3 (diff) | |
| download | bcm5719-llvm-3c7223837a9c795f3c2c010269ba05860288fb52.tar.gz bcm5719-llvm-3c7223837a9c795f3c2c010269ba05860288fb52.zip | |
clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h: Add a forward decl AnalysisManager, to unbreak modules build.
llvm-svn: 309052
| -rw-r--r-- | clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h index 9bb4d72e915..54c943e5314 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h @@ -22,6 +22,8 @@ namespace clang { namespace ento { +class AnalysisManager; + ProgramStateRef markLoopAsUnrolled(const Stmt *Term, ProgramStateRef State, const FunctionDecl *FD); bool isUnrolledLoopBlock(const CFGBlock *Block, ExplodedNode *Pred, |

