]> granicus.if.org Git - clang/commitdiff
Fix 80 col violation
authorTed Kremenek <kremenek@apple.com>
Fri, 18 Jul 2008 15:59:33 +0000 (15:59 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 18 Jul 2008 15:59:33 +0000 (15:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53754 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/RValues.cpp

index ed3dba925ebe73c06cc5b9aef047d42f89afe9b9..e315302704e72196eef2fa3639c04342bfd7e93e 100644 (file)
@@ -72,11 +72,12 @@ bool RVal::isZeroConstant() const {
 // Transfer function dispatch for Non-LVals.
 //===----------------------------------------------------------------------===//
 
-RVal
-nonlval::ConcreteInt::EvalBinOp(BasicValueFactory& BasicVals, BinaryOperator::Opcode Op,
-                                const nonlval::ConcreteInt& R) const {
+RVal nonlval::ConcreteInt::EvalBinOp(BasicValueFactory& BasicVals,
+                                     BinaryOperator::Opcode Op,
+                                     const nonlval::ConcreteInt& R) const {
   
-  const llvm::APSInt* X = BasicVals.EvaluateAPSInt(Op, getValue(), R.getValue());
+  const llvm::APSInt* X =
+    BasicVals.EvaluateAPSInt(Op, getValue(), R.getValue());
   
   if (X)
     return nonlval::ConcreteInt(*X);
@@ -84,7 +85,6 @@ nonlval::ConcreteInt::EvalBinOp(BasicValueFactory& BasicVals, BinaryOperator::Op
     return UndefinedVal();
 }
 
-
   // Bitwise-Complement.
 
 nonlval::ConcreteInt