[cfe-commits] r74875 - /cfe/trunk/lib/Analysis/Store.cpp

Ted Kremenek kremenek at apple.com
Mon Jul 6 15:40:37 PDT 2009


Author: kremenek
Date: Mon Jul  6 17:40:36 2009
New Revision: 74875

URL: http://llvm.org/viewvc/llvm-project?rev=74875&view=rev
Log:
Fix 80 col violation.

Modified:
    cfe/trunk/lib/Analysis/Store.cpp

Modified: cfe/trunk/lib/Analysis/Store.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/Store.cpp?rev=74875&r1=74874&r2=74875&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/Store.cpp (original)
+++ cfe/trunk/lib/Analysis/Store.cpp Mon Jul  6 17:40:36 2009
@@ -47,8 +47,8 @@
   // 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);
   }
 





More information about the cfe-commits mailing list