Capitalize LowerVectorIntExtend to be consistent with all the other lower functions in this file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2013-01-19 23:14:09 +00:00
parent fe07db323b
commit 00a312c478
2 changed files with 3 additions and 3 deletions

View File

@ -6580,7 +6580,7 @@ SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
// Reduce a vector shuffle to zext. // Reduce a vector shuffle to zext.
SDValue SDValue
X86TargetLowering::lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const { X86TargetLowering::LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
// PMOVZX is only available from SSE41. // PMOVZX is only available from SSE41.
if (!Subtarget->hasSSE41()) if (!Subtarget->hasSSE41())
return SDValue(); return SDValue();
@ -6683,7 +6683,7 @@ X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
} }
// Check integer expanding shuffles. // Check integer expanding shuffles.
SDValue NewOp = lowerVectorIntExtend(Op, DAG); SDValue NewOp = LowerVectorIntExtend(Op, DAG);
if (NewOp.getNode()) if (NewOp.getNode())
return NewOp; return NewOp;

View File

@ -852,7 +852,7 @@ namespace llvm {
SDValue LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const; SDValue LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const;
SDValue lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const; SDValue LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const;
virtual SDValue virtual SDValue
LowerFormalArguments(SDValue Chain, LowerFormalArguments(SDValue Chain,