make 64-bit safe and fix the build on alpha
authorAndrew Lenharth <andrewl@lenharth.org>
Wed, 31 May 2006 18:56:42 +0000 (18:56 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Wed, 31 May 2006 18:56:42 +0000 (18:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28593 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/StringExtras.h

index 375b655b4d6e8ed317ba197c693e0a1143ea13c1..e66fc693453658e3633f06c1fcb2c8aca6489f38 100644 (file)
@@ -55,11 +55,7 @@ static inline std::string utostr(uint64_t X, bool isNeg = false) {
   return std::string(BufPtr);
 }
 
-static inline std::string utostr(unsigned long X, bool isNeg = false) {
-  return utostr(static_cast<uint64_t>(X), isNeg);
-}
-
-static inline std::string utostr(unsigned X, bool isNeg = false) {
+static inline std::string utostr(uint32_t X, bool isNeg = false) {
   char Buffer[20];
   char *BufPtr = Buffer+19;
 
@@ -83,14 +79,7 @@ static inline std::string itostr(int64_t X) {
     return utostr(static_cast<uint64_t>(X));
 }
 
-static inline std::string itostr(long X) {
-  if (X < 0)
-    return utostr(static_cast<uint64_t>(-X), true);
-  else
-    return utostr(static_cast<uint64_t>(X));
-}
-
-static inline std::string itostr(int X) {
+static inline std::string itostr(int32_t X) {
   if (X < 0)
     return utostr(static_cast<unsigned>(-X), true);
   else