summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-05-27 07:58:35 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-05-27 07:58:35 +0000
commit509150f973ae650a57b79010a3ec36e60e40f41d (patch)
treeea2e4a9ef3fafd74494831bd749d8f1b67f06b3a /lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
parentf6f20a7779c5308ccb3e4306552d749091a77a60 (diff)
downloadllvm-509150f973ae650a57b79010a3ec36e60e40f41d.tar.gz
llvm-509150f973ae650a57b79010a3ec36e60e40f41d.tar.bz2
llvm-509150f973ae650a57b79010a3ec36e60e40f41d.tar.xz
Remove special cases for more opcodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72467 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
index 693ac68e30..df9af2147c 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
+++ b/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