diff options
author | Dan Gohman <gohman@apple.com> | 2007-05-24 14:36:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-05-24 14:36:04 +0000 |
commit | 30978078bfa169742f15a0b8cd46aff3f5358552 (patch) | |
tree | 785b3a84fd12d587220151b649678c8589faf7ab /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 703e0f86085d6cc9e8c916ea0e163231ea964cf3 (diff) | |
download | bcm5719-llvm-30978078bfa169742f15a0b8cd46aff3f5358552.tar.gz bcm5719-llvm-30978078bfa169742f15a0b8cd46aff3f5358552.zip |
Minor comment cleanups.
llvm-svn: 37321
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 1115b219948..8a3ad8a31c4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -770,7 +770,7 @@ SDOperand SelectionDAGLowering::getValue(const Value *V) { Ops.push_back(DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, PTyElementVT)); } else if (PTyElementVT < PTyLegalElementVT) { - // If the register was promoted, use TRUNCATE of FP_ROUND as appropriate. + // If the register was promoted, use TRUNCATE or FP_ROUND as appropriate. for (unsigned i = 0; i != NE; ++i) { SDOperand Op = DAG.getCopyFromReg(DAG.getEntryNode(), InReg++, PTyElementVT); |