summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2011-09-18 08:03:58 +0000
committerCraig Topper <craig.topper@gmail.com>2011-09-18 08:03:58 +0000
commitd9d01917ee6ba0ea547ed5f8098c796da29cf8f6 (patch)
tree2b81128e6739dd913e48bb025c3e756fe973cace /llvm/lib
parent98e5736295644765a8d3f9970018f9f73b18ce2f (diff)
downloadbcm5719-llvm-d9d01917ee6ba0ea547ed5f8098c796da29cf8f6.tar.gz
bcm5719-llvm-d9d01917ee6ba0ea547ed5f8098c796da29cf8f6.zip
Fix typo by changing Lower256IntVETCC to Lower256IntVSETCC.
llvm-svn: 139993
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 42193c41cb4..a8c3f80af6a 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -8414,9 +8414,9 @@ SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
DAG.getConstant(X86CC, MVT::i8), EFLAGS);
}
-// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
+// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
// ones, and then concatenate the result back.
-static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
+static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
EVT VT = Op.getValueType();
assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::SETCC &&
@@ -8520,7 +8520,7 @@ SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
// Break 256-bit integer vector compare into smaller ones.
if (!isFP && VT.getSizeInBits() == 256)
- return Lower256IntVETCC(Op, DAG);
+ return Lower256IntVSETCC(Op, DAG);
// We are handling one of the integer comparisons here. Since SSE only has
// GT and EQ comparisons for integer, swapping operands and multiple
OpenPOWER on IntegriCloud