File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ class BranchFolderLegacy : public MachineFunctionPass {
9595public:
9696 static char ID;
9797
98- explicit BranchFolderLegacy (bool EnableTailMerge = true )
98+ explicit BranchFolderLegacy (bool EnableTailMerge)
9999 : MachineFunctionPass(ID), EnableTailMerge(EnableTailMerge) {}
100100
101101 bool runOnMachineFunction (MachineFunction &MF) override ;
@@ -2091,6 +2091,6 @@ bool BranchFolder::HoistCommonCodeInSuccs(MachineBasicBlock *MBB) {
20912091 return true ;
20922092}
20932093
2094- MachineFunctionPass *llvm::createBranchFolderPass (bool EnableTailMerge = true ) {
2094+ MachineFunctionPass *llvm::createBranchFolderPass (bool EnableTailMerge) {
20952095 return new BranchFolderLegacy (EnableTailMerge);
20962096}
You can’t perform that action at this time.
0 commit comments