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 | f4c5fe73be872a91872001e29c9a7483e3c93930 (patch) | |
tree | 13c46111fb490af4f5281b38cd6752ec1eb6a9e5 /llvm/lib/Analysis/AliasAnalysis.cpp | |
parent | 2c8028bcf40f4bb44b3c73f788d2f63d2d353d9a (diff) | |
download | bcm5719-llvm-f4c5fe73be872a91872001e29c9a7483e3c93930.tar.gz bcm5719-llvm-f4c5fe73be872a91872001e29c9a7483e3c93930.zip |
Change AliasAnalysis and its clients to use uint64_t instead of unsigned
for representing object sizes, for consistency with other parts of LLVM.
llvm-svn: 116831
Diffstat (limited to 'llvm/lib/Analysis/AliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/AliasAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/AliasAnalysis.cpp b/llvm/lib/Analysis/AliasAnalysis.cpp index ab12b0df31d..e5fddabadd0 100644 --- a/llvm/lib/Analysis/AliasAnalysis.cpp +++ b/llvm/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; } |