Fix Size Typing

Stores sizes as uint64_t to avoid possible truncation.

llvm-svn: 138901
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index e888985..f7341fe 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1575,7 +1575,7 @@
     int Value = isRepeatedByteSequence(CA, AP.TM);
 
     if (Value != -1) {
-      unsigned Bytes = AP.TM.getTargetData()->getTypeAllocSize(CA->getType());
+      uint64_t Bytes = AP.TM.getTargetData()->getTypeAllocSize(CA->getType());
       AP.OutStreamer.EmitFill(Bytes, Value, AddrSpace);
     }
     else {