diff options
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h')
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h b/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h index ef2278c94f..0985f12966 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h @@ -222,8 +222,8 @@ public: /// \param E the expression that caused the invalidation. /// \param BlockCount The number of times the current basic block has been // visited. - /// \param CausedByPointerEscape the flag is set to true when - /// the invalidation is due to escape of a symbol (representing a + /// \param CausesPointerEscape the flag is set to true when + /// the invalidation entails escape of a symbol (representing a /// pointer). For example, due to it being passed as an argument in a /// call. /// \param IS the set of invalidated symbols. @@ -232,7 +232,7 @@ public: ProgramStateRef invalidateRegions(ArrayRef<const MemRegion *> Regions, const Expr *E, unsigned BlockCount, const LocationContext *LCtx, - bool CausedByPointerEscape, + bool CausesPointerEscape, InvalidatedSymbols *IS = 0, const CallEvent *Call = 0) const; |