diff options
author | Dan Gohman <gohman@apple.com> | 2010-10-19 18:00:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-10-19 18:00:02 +0000 |
commit | 4cccb87b4d766719cd8cdf98bed1d433d245adb0 (patch) | |
tree | ec401e917c293c58c52f7c799de5a5200a91f739 /lib/Analysis/AliasAnalysis.cpp | |
parent | f7d5278fb32b84b6218a222346202ab3af17057c (diff) |
Change AliasAnalysis and its clients to use uint64_t instead of unsigned
for representing object sizes, for consistency with other parts of LLVM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116831 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/AliasAnalysis.cpp')
-rw-r--r-- | lib/Analysis/AliasAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/AliasAnalysis.cpp b/lib/Analysis/AliasAnalysis.cpp index ab12b0df31..e5fddabadd 100644 --- a/lib/Analysis/AliasAnalysis.cpp +++ b/lib/Analysis/AliasAnalysis.cpp @@ -283,7 +283,7 @@ void AliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { /// getTypeStoreSize - Return the TargetData store size for the given type, /// if known, or a conservative value otherwise. /// -unsigned AliasAnalysis::getTypeStoreSize(const Type *Ty) { +uint64_t AliasAnalysis::getTypeStoreSize(const Type *Ty) { return TD ? TD->getTypeStoreSize(Ty) : UnknownSize; } |