Change AliasAnalysis and its clients to use uint64_t instead of unsigned
[oota-llvm.git] / lib / Analysis / AliasAnalysis.cpp
index ab12b0df31d826b014c5dd5f6f20a09850dc23eb..e5fddabadd06138d288218f9e1498cd317a4fb6a 100644 (file)
@@ -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;
 }