[llvm-commits] CVS: llvm/include/Support/StringExtras.h
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Oct 30 09:04:04 PST 2003
Changes in directory llvm/include/Support:
StringExtras.h updated: 1.8 -> 1.9
---
Log message:
Apparently my Mac OS X fixes were not entirely compatible with SPARC...hmm.
---
Diffs of the changes: (+1 -1)
Index: llvm/include/Support/StringExtras.h
diff -u llvm/include/Support/StringExtras.h:1.8 llvm/include/Support/StringExtras.h:1.9
--- llvm/include/Support/StringExtras.h:1.8 Wed Oct 29 14:06:19 2003
+++ llvm/include/Support/StringExtras.h Thu Oct 30 09:03:49 2003
@@ -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;
More information about the llvm-commits
mailing list