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

llvm-svn: 9612
This commit is contained in:
Brian Gaeke 2003-10-30 15:03:49 +00:00
parent dd63f9e22b
commit 8d09fd1ea6
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ static inline std::string utohexstr(uint64_t X) {
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;