diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-12-13 06:12:35 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-12-13 06:12:35 +0000 |
commit | 6586adfc1a52fbafd0733b74cd73651e328ce019 (patch) | |
tree | 84dd6ea4d092e9004485ec29d7d3ae972291a18b | |
parent | b9d89c9ffbfd68150d0e678df4ef00752c334713 (diff) |
Update comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32532 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index c26e026129..c46995e5d2 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -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]; } |