summaryrefslogtreecommitdiffstats
path: root/clang/lib/Checker/RegionStore.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2010-02-05 05:24:20 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2010-02-05 05:24:20 +0000
commit0d081f373a05717a30f89f5ff9019780c571760f (patch)
treeab6b9ea88ffa07ef34d19ddaa7363204ab251021 /clang/lib/Checker/RegionStore.cpp
parentecac409cb0a26fb79ecb0ff15e2e446daa121371 (diff)
downloadbcm5719-llvm-0d081f373a05717a30f89f5ff9019780c571760f.tar.gz
bcm5719-llvm-0d081f373a05717a30f89f5ff9019780c571760f.zip
Remove unused parameter.
llvm-svn: 95364
Diffstat (limited to 'clang/lib/Checker/RegionStore.cpp')
-rw-r--r--clang/lib/Checker/RegionStore.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Checker/RegionStore.cpp b/clang/lib/Checker/RegionStore.cpp
index 420f6650b80..348450e2331 100644
--- a/clang/lib/Checker/RegionStore.cpp
+++ b/clang/lib/Checker/RegionStore.cpp
@@ -266,8 +266,7 @@ public:
/// casts from arrays to pointers.
SVal ArrayToPointer(Loc Array);
- SVal EvalBinOp(const GRState *state, BinaryOperator::Opcode Op,Loc L,
- NonLoc R, QualType resultTy);
+ SVal EvalBinOp(BinaryOperator::Opcode Op,Loc L, NonLoc R, QualType resultTy);
Store getInitialStore(const LocationContext *InitLoc) {
return RBFactory.GetEmptyMap().getRoot();
@@ -916,8 +915,7 @@ SVal RegionStoreManager::ArrayToPointer(Loc Array) {
// Pointer arithmetic.
//===----------------------------------------------------------------------===//
-SVal RegionStoreManager::EvalBinOp(const GRState *state,
- BinaryOperator::Opcode Op, Loc L, NonLoc R,
+SVal RegionStoreManager::EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R,
QualType resultTy) {
// Assume the base location is MemRegionVal.
if (!isa<loc::MemRegionVal>(L))
OpenPOWER on IntegriCloud