Remove dead code.

llvm-svn: 111736
This commit is contained in:
Zhongxing Xu 2010-08-21 11:05:46 +00:00
parent e11f17f5ed
commit 7a1a8e25ea
1 changed files with 0 additions and 12 deletions

View File

@ -117,18 +117,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.
//===----------------------------------------------------------------------===//