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 | 461a3648cc729bf479bac2232d550ce1752dba6c (patch) | |
tree | 18ee81b2396da4811f1cfed5bfd7573688b14573 | |
parent | 37fc94a76e864251ab909763ecdc68128a53d6ab (diff) | |
download | bcm5719-llvm-461a3648cc729bf479bac2232d550ce1752dba6c.tar.gz bcm5719-llvm-461a3648cc729bf479bac2232d550ce1752dba6c.zip |
Update comments.
llvm-svn: 32532
-rw-r--r-- | llvm/include/llvm/Target/TargetLowering.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index c26e0261293..c46995e5d2e 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/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]; } |