aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/Store.cpp
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
commit07cdec1cb6fa8920674e80019789ebe58e1c5666 (patch)
tree90a11a58e83be030df38835bd46848274a2aa4da /lib/Analysis/Store.cpp
parentb9a44250c502cf9f9a2c18ccd50f06158dd7357b (diff)
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Store.cpp')
-rw-r--r--lib/Analysis/Store.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/Store.cpp b/lib/Analysis/Store.cpp
index 49b37fa352..6c6e7d272d 100644
--- a/lib/Analysis/Store.cpp
+++ b/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);
}