Fix 80 col violation


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53754 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/RValues.cpp b/lib/Analysis/RValues.cpp
index ed3dba9..e315302 100644
--- a/lib/Analysis/RValues.cpp
+++ b/lib/Analysis/RValues.cpp
@@ -72,11 +72,12 @@
 // 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 @@
     return UndefinedVal();
 }
 
-
   // Bitwise-Complement.
 
 nonlval::ConcreteInt