From: Andrew Lenharth Date: Wed, 31 May 2006 18:56:42 +0000 (+0000) Subject: make 64-bit safe and fix the build on alpha X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cffba3a6e934fb80008e1a18d8abef29ef137437;p=oota-llvm.git make 64-bit safe and fix the build on alpha git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28593 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h index 375b655b4d6..e66fc693453 100644 --- a/include/llvm/ADT/StringExtras.h +++ b/include/llvm/ADT/StringExtras.h @@ -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(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(X)); } -static inline std::string itostr(long X) { - if (X < 0) - return utostr(static_cast(-X), true); - else - return utostr(static_cast(X)); -} - -static inline std::string itostr(int X) { +static inline std::string itostr(int32_t X) { if (X < 0) return utostr(static_cast(-X), true); else