mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
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:
parent
fe07db323b
commit
00a312c478
@ -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();
|
||||
@ -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;
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user