aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2009-10-31 03:36:08 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2009-10-31 03:36:08 +0000
commitff04174fc6a17441b75bd2e611cbe9e6809853fd (patch)
tree18221aac8011ba30e2e72878a80f59cc5ab13fac
parent87a924e37dc40c6e3e2b33d1dbd646aeccf4c15b (diff)
fix 80-col.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85642 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/NullDerefChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/NullDerefChecker.cpp b/lib/Analysis/NullDerefChecker.cpp
index 523507e156..ef7da61901 100644
--- a/lib/Analysis/NullDerefChecker.cpp
+++ b/lib/Analysis/NullDerefChecker.cpp
@@ -45,7 +45,7 @@ ExplodedNode *NullDerefChecker::CheckLocation(const Stmt *S, ExplodedNode *Pred,
NullState = NullState->set<GRState::NullDerefTag>(PersistentLV);
ExplodedNode *N = Builder.generateNode(S, NullState, Pred,
- ProgramPoint::PostNullCheckFailedKind);
+ ProgramPoint::PostNullCheckFailedKind);
if (N) {
N->markAsSink();