File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
llvm/include/llvm/CodeGen/GlobalISel Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -594,10 +594,6 @@ class CombinerHelper {
594
594
// / This variant does not erase \p MI after calling the build function.
595
595
void applyBuildFnNoErase (MachineInstr &MI, BuildFnTy &MatchInfo);
596
596
597
- // / Use a function which takes in a MachineIRBuilder to perform a combine.
598
- // / By default, it erases the instruction \p MI from the function.
599
- void applyBuildFnMO (const MachineOperand &MO, BuildFnTy &MatchInfo);
600
-
601
597
bool matchOrShiftToFunnelShift (MachineInstr &MI, BuildFnTy &MatchInfo);
602
598
bool matchFunnelShiftToRotate (MachineInstr &MI);
603
599
void applyFunnelShiftToRotate (MachineInstr &MI);
@@ -853,6 +849,9 @@ class CombinerHelper {
853
849
// / register and different indices.
854
850
bool matchExtractVectorElementWithDifferentIndices (const MachineOperand &MO,
855
851
BuildFnTy &MatchInfo);
852
+ // / Use a function which takes in a MachineIRBuilder to perform a combine.
853
+ // / By default, it erases the instruction def'd on \p MO from the function.
854
+ void applyBuildFnMO (const MachineOperand &MO, BuildFnTy &MatchInfo);
856
855
857
856
private:
858
857
// / Checks for legality of an indexed variant of \p LdSt.
You can’t perform that action at this time.
0 commit comments