Update comments.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 13 Dec 2006 06:12:35 +0000 (06:12 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 13 Dec 2006 06:12:35 +0000 (06:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32532 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetLowering.h

index c26e02612930b6753d271fe838c8f79539742c55..c46995e5d2e82900c1dd4c70e67151da2662c65f 100644 (file)
@@ -168,9 +168,10 @@ public:
 
   /// getTypeToTransformTo - For types supported by the target, this is an
   /// identity function.  For types that must be promoted to larger types, this
-  /// returns the larger type to promote to.  For types that are larger than the
-  /// largest integer register, this contains one step in the expansion to get
-  /// to the smaller register.
+  /// returns the larger type to promote to.  For integer types that are larger
+  /// than the largest integer register, this contains one step in the expansion
+  /// to get to the smaller register. For illegal floating point types, this
+  /// returns the integer type to transform to.
   MVT::ValueType getTypeToTransformTo(MVT::ValueType VT) const {
     return TransformToType[VT];
   }