diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-08-21 11:05:46 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-08-21 11:05:46 +0000 |
commit | c9509b2e39fcb4c845509649fbeaf8d2f83cf852 (patch) | |
tree | f51a2dba99b6e425ed934c35214ae6c33c25e535 /lib/Checker/RegionStore.cpp | |
parent | 81fa4ec8a9dd342a08487fca618f7fedda200eae (diff) |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/RegionStore.cpp')
-rw-r--r-- | lib/Checker/RegionStore.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/Checker/RegionStore.cpp b/lib/Checker/RegionStore.cpp index 484ed4bef1..c51a4c8c1d 100644 --- a/lib/Checker/RegionStore.cpp +++ b/lib/Checker/RegionStore.cpp @@ -118,18 +118,6 @@ public: } //===----------------------------------------------------------------------===// -// Utility functions. -//===----------------------------------------------------------------------===// - -static bool IsAnyPointerOrIntptr(QualType ty, ASTContext &Ctx) { - if (ty->isAnyPointerType()) - return true; - - return ty->isIntegerType() && ty->isScalarType() && - Ctx.getTypeSize(ty) == Ctx.getTypeSize(Ctx.VoidPtrTy); -} - -//===----------------------------------------------------------------------===// // Main RegionStore logic. //===----------------------------------------------------------------------===// |