diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-05-27 07:58:35 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-05-27 07:58:35 +0000 |
commit | 3b251705fda4f82fa0ed3f17bc1d2d009c386036 (patch) | |
tree | 8dd43b7fcc35ba78c9ac0ee8bc0eafe024e3c41c /llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | |
parent | 0e4943142288e4405db73d1ad6a66c4ed00c1579 (diff) | |
download | bcm5719-llvm-3b251705fda4f82fa0ed3f17bc1d2d009c386036.tar.gz bcm5719-llvm-3b251705fda4f82fa0ed3f17bc1d2d009c386036.zip |
Remove special cases for more opcodes.
llvm-svn: 72467
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp index 693ac68e30b..df9af2147ca 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp @@ -10,8 +10,8 @@ // This file implements the SelectionDAG::LegalizeVectors method. // // The vector legalizer looks for vector operations which might need to be -// unrolled and legalizes them. This is a separate step from Legalize because -// unrolling can introduce illegal types. For example, suppose we have an +// scalarized and legalizes them. This is a separate step from Legalize because +// scalarizing can introduce illegal types. For example, suppose we have an // ISD::SDIV of type v2i64 on x86-32. The type is legal (for example, addition // on a v2i64 is legal), but ISD::SDIV isn't legal, so we have to unroll the // operation, which introduces nodes with the illegal type i64 which must be |