[llvm-commits] [llvm] r53401 - /llvm/trunk/include/llvm/ADT/APInt.h

Duncan Sands baldrick at free.fr
Thu Jul 10 04:22:00 PDT 2008


Author: baldrick
Date: Thu Jul 10 06:21:59 2008
New Revision: 53401

URL: http://llvm.org/viewvc/llvm-project?rev=53401&view=rev
Log:
Correct a comment.

Modified:
    llvm/trunk/include/llvm/ADT/APInt.h

Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=53401&r1=53400&r2=53401&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Thu Jul 10 06:21:59 2008
@@ -997,10 +997,10 @@
     return toString(radix, false);
   }
 
-  /// Considers the APInt to be unsigned and converts it into a string in the
+  /// Considers the APInt to be signed and converts it into a string in the
   /// radix given. The radix can be 2, 8, 10 or 16.
   /// @returns a character interpretation of the APInt
-  /// @brief Convert unsigned APInt to string representation.
+  /// @brief Convert signed APInt to string representation.
   std::string toStringSigned(uint8_t radix = 10) const {
     return toString(radix, true);
   }





More information about the llvm-commits mailing list