From 07cdec1cb6fa8920674e80019789ebe58e1c5666 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 6 Jul 2009 22:40:36 +0000 Subject: [PATCH] Fix 80 col violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74875 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/Store.cpp | 4 ++-- 1 file 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(R)) { assert(CastToTy->isFunctionPointerType() || CastToTy->isBlockPointerType() - || (CastToTy->isPointerType() - && CastToTy->getAsPointerType()->getPointeeType()->isVoidType())); + || (CastToTy->isPointerType() && + CastToTy->getAsPointerType()->getPointeeType()->isVoidType())); return CastResult(state, R); } -- 2.40.0