Skip to content

Commit

Permalink
Capitalize LowerVectorIntExtend to be consistent with all the other l…
Browse files Browse the repository at this point in the history
…ower functions in this file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172927 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
topperc committed Jan 19, 2013
1 parent fe07db3 commit 00a312c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Target/X86/X86ISelLowering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6580,7 +6580,7 @@ SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {

// Reduce a vector shuffle to zext.
SDValue
X86TargetLowering::lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
X86TargetLowering::LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
// PMOVZX is only available from SSE41.
if (!Subtarget->hasSSE41())
return SDValue();
Expand Down Expand Up @@ -6683,7 +6683,7 @@ X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
}

// Check integer expanding shuffles.
SDValue NewOp = lowerVectorIntExtend(Op, DAG);
SDValue NewOp = LowerVectorIntExtend(Op, DAG);
if (NewOp.getNode())
return NewOp;

Expand Down
2 changes: 1 addition & 1 deletion lib/Target/X86/X86ISelLowering.h
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ namespace llvm {

SDValue LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const;

SDValue lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const;
SDValue LowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const;

virtual SDValue
LowerFormalArguments(SDValue Chain,
Expand Down

0 comments on commit 00a312c

Please sign in to comment.