aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineScheduler.cpp
diff options
context:
space:
mode:
authorjacquesguan <Jianjian.Guan@streamcomputing.com>2023-03-24 18:18:25 +0800
committerjacquesguan <Jianjian.Guan@streamcomputing.com>2023-03-30 10:47:20 +0800
commit50f2ce49e760ac818f42b86a616de191a310c724 (patch)
tree3413e4b6cb049c93c823bc5f1b64d240588a5c6d /llvm/lib/CodeGen/MachineScheduler.cpp
parent0bf75d85419e87d3cb0352f7ebc8ef252869e9f6 (diff)
downloadllvm-50f2ce49e760ac818f42b86a616de191a310c724.zip
llvm-50f2ce49e760ac818f42b86a616de191a310c724.tar.gz
llvm-50f2ce49e760ac818f42b86a616de191a310c724.tar.bz2
[MachineScheduler] Rename postprocessDAG to postProcessDAG. NFC
Rename postprocessDAG to camel case. Reviewed By: foad Differential Revision: https://reviews.llvm.org/D146795
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineScheduler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp
index 48c5ab0..30261fa 100644
--- a/llvm/lib/CodeGen/MachineScheduler.cpp
+++ b/llvm/lib/CodeGen/MachineScheduler.cpp
@@ -792,7 +792,7 @@ void ScheduleDAGMI::schedule() {
// Build the DAG.
buildSchedGraph(AA);
- postprocessDAG();
+ postProcessDAG();
SmallVector<SUnit*, 8> TopRoots, BotRoots;
findRootsAndBiasEdges(TopRoots, BotRoots);
@@ -859,7 +859,7 @@ void ScheduleDAGMI::schedule() {
}
/// Apply each ScheduleDAGMutation step in order.
-void ScheduleDAGMI::postprocessDAG() {
+void ScheduleDAGMI::postProcessDAG() {
for (auto &m : Mutations)
m->apply(this);
}
@@ -1383,7 +1383,7 @@ void ScheduleDAGMILive::schedule() {
LLVM_DEBUG(SchedImpl->dumpPolicy());
buildDAGWithRegPressure();
- postprocessDAG();
+ postProcessDAG();
SmallVector<SUnit*, 8> TopRoots, BotRoots;
findRootsAndBiasEdges(TopRoots, BotRoots);