Apparently my Mac OS X fixes were not entirely compatible with SPARC...hmm.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9612 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h
index b0f5c51..2c50c1c 100644
--- a/include/Support/StringExtras.h
+++ b/include/Support/StringExtras.h
@@ -36,7 +36,7 @@
   return std::string(BufPtr);
 }
 
-static inline std::string utostr(uint64_t X, bool isNeg = false) {
+static inline std::string utostr(unsigned long long X, bool isNeg = false) {
   char Buffer[40];
   char *BufPtr = Buffer+39;