diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-29 21:43:22 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-29 21:43:22 +0000 |
commit | 4301526e8dad61db333728626e8fe3c916bb2cc2 (patch) | |
tree | 09ca780b262fca2176c25e78d0172389293a81ac /clang/lib/Analysis/SValuator.cpp | |
parent | 766733289964f94e00243bc3e305073b21fb21b8 (diff) | |
download | bcm5719-llvm-4301526e8dad61db333728626e8fe3c916bb2cc2.tar.gz bcm5719-llvm-4301526e8dad61db333728626e8fe3c916bb2cc2.zip |
Remove 'StoreManager::OldCastRegion()', TypedViewRegion (which only
OldCastRegion used), and the associated command line option
'-analyzer-store=old-basic-cast'.
llvm-svn: 77509
Diffstat (limited to 'clang/lib/Analysis/SValuator.cpp')
-rw-r--r-- | clang/lib/Analysis/SValuator.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Analysis/SValuator.cpp b/clang/lib/Analysis/SValuator.cpp index 787c926f6ba..079481a62ac 100644 --- a/clang/lib/Analysis/SValuator.cpp +++ b/clang/lib/Analysis/SValuator.cpp @@ -73,10 +73,6 @@ SValuator::CastResult SValuator::EvalCast(SVal val, const GRState *state, // Check for casts from a region to a specific type. if (const MemRegion *R = val.getAsRegion()) { - // FIXME: For TypedViewRegions, we should handle the case where the - // underlying symbolic pointer is a function pointer or - // block pointer. - // FIXME: We should handle the case where we strip off view layers to get // to a desugared type. |