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/SelectionDAGISel.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/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 8a2f7b1f5fa..d4651fd6abc 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -840,13 +840,13 @@ SDOperand SelectionDAGLowering::getValue(const Value *V) { // Now that we know the number and type of the elements, push a // Constant or ConstantFP node onto the ops list for each element of - // the packed constant. + // the vector constant. SmallVector<SDOperand, 8> Ops; if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { for (unsigned i = 0; i != NumElements; ++i) Ops.push_back(getValue(CP->getOperand(i))); } else { - assert(isa<ConstantAggregateZero>(C) && "Unknown packed constant!"); + assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); SDOperand Op; if (MVT::isFloatingPoint(PVT)) Op = DAG.getConstantFP(0, PVT); |