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 | 36f6b0429527b13952dcf8cf87f739a8f142e69f (patch) | |
| tree | 8f909f44a4c6df1eeb6350e627c4038c21ca229f /clang/lib/Analysis/RValues.cpp | |
| parent | b1c91bfc45f46c1e01f8cbeca807da4bd08e0940 (diff) | |
| download | bcm5719-llvm-36f6b0429527b13952dcf8cf87f739a8f142e69f.tar.gz bcm5719-llvm-36f6b0429527b13952dcf8cf87f739a8f142e69f.zip | |
Fix 80 col violation
llvm-svn: 53754
Diffstat (limited to 'clang/lib/Analysis/RValues.cpp')
| -rw-r--r-- | clang/lib/Analysis/RValues.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Analysis/RValues.cpp b/clang/lib/Analysis/RValues.cpp index ed3dba925eb..e315302704e 100644 --- a/clang/lib/Analysis/RValues.cpp +++ b/clang/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 |

