Add support for utostr(unsigned long)

llvm-svn: 9588
This commit is contained in:
Brian Gaeke 2003-10-29 20:06:19 +00:00
parent 885a800b9d
commit d744e41a11

View File

@ -61,6 +61,10 @@ static inline std::string itostr(int64_t X) {
}
static inline std::string utostr(unsigned long X, bool isNeg = false) {
return utostr((unsigned long long)X, isNeg);
}
static inline std::string utostr(unsigned X, bool isNeg = false) {
char Buffer[20];
char *BufPtr = Buffer+19;