diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-17 23:27:17 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-17 23:27:17 +0000 |
commit | 40bbff0a96fc3e4077313eb08d21b7824fbc3e5e (patch) | |
tree | 122b77053e4126f84865b92f1d792617100ac419 | |
parent | 190506199ebbfe9bf33c1b4410c7aecd7f348ab1 (diff) |
Add panic function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64852 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 0f8c56b1a2..b055415182 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -1252,7 +1252,8 @@ void GRExprEngine::VisitCallRec(CallExpr* CE, NodeTy* Pred, case 26: if (!memcmp(s, "_XCAssertionFailureHandler", 26) || - !memcmp(s, "_DTAssertionFailureHandler", 26)) + !memcmp(s, "_DTAssertionFailureHandler", 26) || + !memcmp(s, "_TSAssertionFailureHandler", 26)) Builder->BuildSinks = true; break; |