rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()
[oota-llvm.git] / include / llvm / ADT / APSInt.h
index 7e515da704b73cf4159486676401e7f51ea3152d..91dd709000ce1c2fcf8bc4df1e3a14f52284958b 100644 (file)
@@ -52,6 +52,12 @@ public:
   void setIsUnsigned(bool Val) { IsUnsigned = Val; }
   void setIsSigned(bool Val) { IsUnsigned = !Val; }
   
+  /// This is used internally to convert an APInt to a string.
+  /// @brief Converts an APInt to a std::string
+  std::string toString(uint8_t Radix) const {
+    return toString(Radix, isSigned());
+  }
+  
   
   const APSInt &operator%=(const APSInt &RHS) {
     assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");