diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-18 15:59:33 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-18 15:59:33 +0000 |
commit | 75b0a1ce3e98904c6ac6c5634633b3580f5b4c7e (patch) | |
tree | 714e492a27699cf64c69b7ded7880f7660826b88 /lib/Analysis/RValues.cpp | |
parent | 40fc5c7e235965af368a34cdbb6d32827cd1e1d8 (diff) |
Fix 80 col violation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53754 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RValues.cpp')
-rw-r--r-- | lib/Analysis/RValues.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Analysis/RValues.cpp b/lib/Analysis/RValues.cpp index ed3dba925e..e315302704 100644 --- a/lib/Analysis/RValues.cpp +++ b/lib/Analysis/RValues.cpp @@ -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 |