]> granicus.if.org Git - clang/commitdiff
Fix 80-col violations.
authorZhongxing Xu <xuzhongxing@gmail.com>
Fri, 31 Oct 2008 07:26:14 +0000 (07:26 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Fri, 31 Oct 2008 07:26:14 +0000 (07:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58495 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/GRExprEngine.cpp

index 21fe3daa7a6723056ef1e7daaacf73ef2d09fab0..30a83e76ab7cb3e2be1be0124201d4cce939fbd7 100644 (file)
@@ -1318,9 +1318,9 @@ void GRExprEngine::VisitObjCMessageExpr(ObjCMessageExpr* ME, NodeTy* Pred,
 }  
 
 void GRExprEngine::VisitObjCMessageExprArgHelper(ObjCMessageExpr* ME,
-                                                 ObjCMessageExpr::arg_iterator AI,
-                                                 ObjCMessageExpr::arg_iterator AE,
-                                                 NodeTy* Pred, NodeSet& Dst) {
+                                              ObjCMessageExpr::arg_iterator AI,
+                                              ObjCMessageExpr::arg_iterator AE,
+                                              NodeTy* Pred, NodeSet& Dst) {
   if (AI == AE) {
     
     // Process the receiver.
@@ -1477,7 +1477,7 @@ void GRExprEngine::VisitCast(Expr* CastE, Expr* Ex, NodeTy* Pred, NodeSet& Dst){
   QualType T = CastE->getType();
   QualType ExTy = Ex->getType();
 
-  if (const ExplicitCastExpr *ExCast = dyn_cast_or_null<ExplicitCastExpr>(CastE))
+  if (const ExplicitCastExpr *ExCast=dyn_cast_or_null<ExplicitCastExpr>(CastE))
     T = ExCast->getTypeAsWritten();
 
   if (ExTy->isArrayType() || ExTy->isFunctionType() || T->isReferenceType())
@@ -2235,7 +2235,7 @@ void GRExprEngine::VisitBinaryOperator(BinaryOperator* B,
           // FIXME: Handle structs.
           QualType T = RHS->getType();
           
-          if (RightV.isUnknown() && (T->isIntegerType() || Loc::IsLocType(T))) {            
+          if (RightV.isUnknown() && (T->isIntegerType() || Loc::IsLocType(T))) {
             unsigned Count = Builder->getCurrentBlockCount();
             SymbolID Sym = SymMgr.getConjuredSymbol(B->getRHS(), Count);