diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-16 14:29:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-16 14:29:03 +0000 |
commit | 06c60b6032667dac653be2fa87581723cd916c6f (patch) | |
tree | 4c1b179a870e326fc59aa667a7487c0909370dbf /llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | |
parent | c6e67a6126825c048ba835dd8720fdb047627a93 (diff) | |
download | bcm5719-llvm-06c60b6032667dac653be2fa87581723cd916c6f.tar.gz bcm5719-llvm-06c60b6032667dac653be2fa87581723cd916c6f.zip |
Fix comments about vectors to use the current wording.
llvm-svn: 39921
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 0f0ba071c0c..5bcee351ea7 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -2846,7 +2846,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { // type. If so, convert to the vector type. MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems); if (TLI.isTypeLegal(TVT)) { - // Turn this into a bit convert of the packed input. + // Turn this into a bit convert of the vector input. Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), LegalizeOp(Node->getOperand(0))); break; @@ -3935,7 +3935,7 @@ SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) { /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't -/// support the operation, but do support the resultant packed vector type. +/// support the operation, but do support the resultant vector type. SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) { // If the only non-undef value is the low element, turn this into a |