File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ class VectorCombine {
101
101
Instruction &I);
102
102
bool foldExtractExtract (Instruction &I);
103
103
bool foldInsExtFNeg (Instruction &I);
104
- bool foldBitcastShuf (Instruction &I);
104
+ bool foldBitcastShuffle (Instruction &I);
105
105
bool scalarizeBinopOrCmp (Instruction &I);
106
106
bool scalarizeVPIntrinsic (Instruction &I);
107
107
bool foldExtractedCmps (Instruction &I);
@@ -679,7 +679,7 @@ bool VectorCombine::foldInsExtFNeg(Instruction &I) {
679
679
// / If this is a bitcast of a shuffle, try to bitcast the source vector to the
680
680
// / destination type followed by shuffle. This can enable further transforms by
681
681
// / moving bitcasts or shuffles together.
682
- bool VectorCombine::foldBitcastShuf (Instruction &I) {
682
+ bool VectorCombine::foldBitcastShuffle (Instruction &I) {
683
683
Value *V;
684
684
ArrayRef<int > Mask;
685
685
if (!match (&I, m_BitCast (
@@ -1880,7 +1880,7 @@ bool VectorCombine::run() {
1880
1880
MadeChange |= foldSelectShuffle (I);
1881
1881
break ;
1882
1882
case Instruction::BitCast:
1883
- MadeChange |= foldBitcastShuf (I);
1883
+ MadeChange |= foldBitcastShuffle (I);
1884
1884
break ;
1885
1885
}
1886
1886
} else {
You can’t perform that action at this time.
0 commit comments