[DAG] clang-format createBranchMacroFusionDAGMutation calls. NFC.

Reduces diff in #72227
This commit is contained in:
Simon Pilgrim 2023-11-20 12:13:09 +00:00
parent dfc03c45c1
commit cfee7152d4
4 changed files with 4 additions and 5 deletions

View File

@ -59,7 +59,7 @@ static bool shouldScheduleAdjacent(const TargetInstrInfo &TII_,
namespace llvm {
std::unique_ptr<ScheduleDAGMutation> createAMDGPUMacroFusionDAGMutation () {
std::unique_ptr<ScheduleDAGMutation> createAMDGPUMacroFusionDAGMutation() {
return createMacroFusionDAGMutation(shouldScheduleAdjacent);
}

View File

@ -62,7 +62,7 @@ static bool shouldScheduleAdjacent(const TargetInstrInfo &TII,
return false;
}
std::unique_ptr<ScheduleDAGMutation> createARMMacroFusionDAGMutation () {
std::unique_ptr<ScheduleDAGMutation> createARMMacroFusionDAGMutation() {
return createMacroFusionDAGMutation(shouldScheduleAdjacent);
}

View File

@ -286,7 +286,7 @@ static bool shouldScheduleAdjacent(const TargetInstrInfo &TII,
namespace llvm {
std::unique_ptr<ScheduleDAGMutation> createPowerPCMacroFusionDAGMutation () {
std::unique_ptr<ScheduleDAGMutation> createPowerPCMacroFusionDAGMutation() {
return createMacroFusionDAGMutation(shouldScheduleAdjacent);
}

View File

@ -67,8 +67,7 @@ static bool shouldScheduleAdjacent(const TargetInstrInfo &TII,
namespace llvm {
std::unique_ptr<ScheduleDAGMutation>
createX86MacroFusionDAGMutation () {
std::unique_ptr<ScheduleDAGMutation> createX86MacroFusionDAGMutation() {
return createBranchMacroFusionDAGMutation(shouldScheduleAdjacent);
}