diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-02-05 05:24:20 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-02-05 05:24:20 +0000 |
commit | 0d081f373a05717a30f89f5ff9019780c571760f (patch) | |
tree | ab6b9ea88ffa07ef34d19ddaa7363204ab251021 /clang/lib/Checker/SimpleSValuator.cpp | |
parent | ecac409cb0a26fb79ecb0ff15e2e446daa121371 (diff) | |
download | bcm5719-llvm-0d081f373a05717a30f89f5ff9019780c571760f.tar.gz bcm5719-llvm-0d081f373a05717a30f89f5ff9019780c571760f.zip |
Remove unused parameter.
llvm-svn: 95364
Diffstat (limited to 'clang/lib/Checker/SimpleSValuator.cpp')
-rw-r--r-- | clang/lib/Checker/SimpleSValuator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Checker/SimpleSValuator.cpp b/clang/lib/Checker/SimpleSValuator.cpp index 7c6e0902caf..fb1d74a9904 100644 --- a/clang/lib/Checker/SimpleSValuator.cpp +++ b/clang/lib/Checker/SimpleSValuator.cpp @@ -423,6 +423,6 @@ SVal SimpleSValuator::EvalBinOpLN(const GRState *state, } // Delegate pointer arithmetic to the StoreManager. - return state->getStateManager().getStoreManager().EvalBinOp(state, op, lhs, + return state->getStateManager().getStoreManager().EvalBinOp(op, lhs, rhs, resultTy); } |