Update comments to use 2.0 syntax type names.
[oota-llvm.git] / include / llvm / DerivedTypes.h
index 5f4569cfd15ed6278807811365bb9b5594f27c66..3ea2a6cb946cf600a85df56ffd5a60a8d068cbe7 100644 (file)
@@ -104,7 +104,7 @@ public:
 
   /// getBitMask - Return a bitmask with ones set for all of the bits
   /// that can be set by an unsigned version of this type.  This is 0xFF for
-  /// sbyte/ubyte, 0xFFFF for shorts, etc.
+  /// i8, 0xFFFF for i16, etc.
   uint64_t getBitMask() const {
     return ~uint64_t(0UL) >> (64-getBitWidth());
   }