diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-31 07:26:14 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-31 07:26:14 +0000 |
commit | d3118bd7daed36417c8e8bdb0390495a4c829d86 (patch) | |
tree | 15e7917a1c380df6f2b31509c9d9e95d6066eda6 /lib/Analysis/GRExprEngine.cpp | |
parent | 6e3f01cef27dd6cc7e36769618820c5b984f61da (diff) |
Fix 80-col violations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 21fe3daa7a..30a83e76ab 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -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); |