[lld] r259748 - Use unsigned long long instead of uint64_t to appease bots

Pete Cooper via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 3 18:50:47 PST 2016


Author: pete
Date: Wed Feb  3 20:50:47 2016
New Revision: 259748

URL: http://llvm.org/viewvc/llvm-project?rev=259748&view=rev
Log:
Use unsigned long long instead of uint64_t to appease bots

Modified:
    lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp

Modified: lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp?rev=259748&r1=259747&r2=259748&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp (original)
+++ lld/trunk/lib/ReaderWriter/MachO/MachOLinkingContext.cpp Wed Feb  3 20:50:47 2016
@@ -85,7 +85,7 @@ bool MachOLinkingContext::parsePackedVer
   SmallVector<StringRef, 5> parts;
   llvm::SplitString(str, parts, ".");
 
-  uint64_t num;
+  unsigned long long num;
   if (llvm::getAsUnsignedInteger(parts[0], 10, num))
     return true;
   if (num > 0xFFFFFF)




More information about the llvm-commits mailing list