aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-04-11 02:32:27 +0000
committerTed Kremenek <kremenek@apple.com>2009-04-11 02:32:27 +0000
commit8ec3d7dbff9d526fcdce4fbea683830192340c90 (patch)
treed20803820295b76b373494d46fd0632afdb3980b
parent3c69d3dda3af53760526d7897743e0fad68a44dc (diff)
analyzer: We cannot bind values to CodeTextRegions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68857 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/PathSensitive/MemRegion.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/MemRegion.h b/include/clang/Analysis/PathSensitive/MemRegion.h
index af63386136..2a9337fddc 100644
--- a/include/clang/Analysis/PathSensitive/MemRegion.h
+++ b/include/clang/Analysis/PathSensitive/MemRegion.h
@@ -216,6 +216,8 @@ public:
QualType getLValueType(ASTContext &C) const {
return LocationType;
}
+
+ virtual bool isBoundable(ASTContext&) const { return false; }
void Profile(llvm::FoldingSetNodeID& ID) const;