diff options
author | Dan Gohman <gohman@apple.com> | 2007-06-21 14:48:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-06-21 14:48:26 +0000 |
commit | 8e8d34b220378cbcbbd5ced1df1cf74937457eb6 (patch) | |
tree | 1e2d3a3895b3bb887959c5cdb17477efc05db0d1 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 04deef3a4929b88a6313fc69b8e84b98601cda74 (diff) | |
download | bcm5719-llvm-8e8d34b220378cbcbbd5ced1df1cf74937457eb6.tar.gz bcm5719-llvm-8e8d34b220378cbcbbd5ced1df1cf74937457eb6.zip |
Tidy up ValueType names in comments.
llvm-svn: 37688
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index f5bb9c7ee55..caedf5745d1 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -243,10 +243,10 @@ void TargetLowering::computeRegisterProperties() { else TransformToType[(MVT::ValueType)IntReg] = (MVT::ValueType)IntReg; - // If the target does not have native F64 support, expand it to I64. We will + // If the target does not have native f64 support, expand it to i64. We will // be generating soft float library calls. If the target does not have native - // support for F32, promote it to F64 if it is legal. Otherwise, expand it to - // I32. + // support for f32, promote it to f64 if it is legal. Otherwise, expand it to + // i32. if (isTypeLegal(MVT::f64)) TransformToType[MVT::f64] = MVT::f64; else { |