[cfe-commits] r53754 - /cfe/trunk/lib/Analysis/RValues.cpp

Ted Kremenek kremenek at apple.com
Fri Jul 18 08:59:34 PDT 2008


Author: kremenek
Date: Fri Jul 18 10:59:33 2008
New Revision: 53754

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

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

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

==============================================================================
--- cfe/trunk/lib/Analysis/RValues.cpp (original)
+++ cfe/trunk/lib/Analysis/RValues.cpp Fri Jul 18 10:59:33 2008
@@ -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





More information about the cfe-commits mailing list