diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-02-07 02:27:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-02-07 02:27:37 +0000 |
commit | 0298834e46efc1db1a3f6aa156d028b6cbf63d5b (patch) | |
tree | ca276f80f0ae78e9738db54dde0fb7fad1c3667c /clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp | |
parent | 7d88ff436bcc5d19b2dcf5dc75d11dc64f42ff33 (diff) | |
download | bcm5719-llvm-0298834e46efc1db1a3f6aa156d028b6cbf63d5b.tar.gz bcm5719-llvm-0298834e46efc1db1a3f6aa156d028b6cbf63d5b.zip |
Create PathDiagnosticCallEnter and PathDiagnosticCallExit, to remark calls in PathDiagnostics from other events. This will
have potential uses later.
llvm-svn: 149960
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp b/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp index c0bb180c82e..0d2c2e82d97 100644 --- a/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp +++ b/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp @@ -52,6 +52,8 @@ PathDiagnosticPiece::PathDiagnosticPiece(Kind k, DisplayHint hint) PathDiagnosticPiece::~PathDiagnosticPiece() {} PathDiagnosticEventPiece::~PathDiagnosticEventPiece() {} +PathDiagnosticCallEnterPiece::~PathDiagnosticCallEnterPiece() {} +PathDiagnosticCallExitPiece::~PathDiagnosticCallExitPiece() {} PathDiagnosticControlFlowPiece::~PathDiagnosticControlFlowPiece() {} PathDiagnosticMacroPiece::~PathDiagnosticMacroPiece() { |