summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-07-06 22:40:36 +0000
committerTed Kremenek <kremenek@apple.com>2009-07-06 22:40:36 +0000
commitf45778f425eb5e757345ee712c9e6202cd70c28c (patch)
treec950f4357d9c511d8337b93671b4f294f8c1cd87
parentbb5a62d46e584d58739c4c388cce770f32c204bd (diff)
downloadbcm5719-llvm-f45778f425eb5e757345ee712c9e6202cd70c28c.tar.gz
bcm5719-llvm-f45778f425eb5e757345ee712c9e6202cd70c28c.zip
Fix 80 col violation.
llvm-svn: 74875
-rw-r--r--clang/lib/Analysis/Store.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/Store.cpp b/clang/lib/Analysis/Store.cpp
index 49b37fa3520..6c6e7d272d3 100644
--- a/clang/lib/Analysis/Store.cpp
+++ b/clang/lib/Analysis/Store.cpp
@@ -47,8 +47,8 @@ StoreManager::NewCastRegion(const GRState *state, const MemRegion* R,
// CodeTextRegion should be cast to only function pointer type.
if (isa<CodeTextRegion>(R)) {
assert(CastToTy->isFunctionPointerType() || CastToTy->isBlockPointerType()
- || (CastToTy->isPointerType()
- && CastToTy->getAsPointerType()->getPointeeType()->isVoidType()));
+ || (CastToTy->isPointerType() &&
+ CastToTy->getAsPointerType()->getPointeeType()->isVoidType()));
return CastResult(state, R);
}
OpenPOWER on IntegriCloud