diff options
| author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-29 05:44:14 +0000 |
|---|---|---|
| committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-29 05:44:14 +0000 |
| commit | 25d710ee504144af3b01abf88def8ee0df994b37 (patch) | |
| tree | 526ed1eb6d5b4cb69d175cf9534129677bb499a5 | |
| parent | 72f3f7eb564fdb910a9068d47a00ddc70ba6f61d (diff) | |
| download | bcm5719-llvm-25d710ee504144af3b01abf88def8ee0df994b37.tar.gz bcm5719-llvm-25d710ee504144af3b01abf88def8ee0df994b37.zip | |
The default answer for isBoundable() should be false.
llvm-svn: 74418
| -rw-r--r-- | clang/include/clang/Analysis/PathSensitive/MemRegion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Analysis/PathSensitive/MemRegion.h b/clang/include/clang/Analysis/PathSensitive/MemRegion.h index 65ac0b53027..427c2db7c5c 100644 --- a/clang/include/clang/Analysis/PathSensitive/MemRegion.h +++ b/clang/include/clang/Analysis/PathSensitive/MemRegion.h @@ -83,7 +83,7 @@ public: template<typename RegionTy> const RegionTy* getAs() const; - virtual bool isBoundable() const { return true; } + virtual bool isBoundable() const { return false; } static bool classof(const MemRegion*) { return true; } }; |

