aboutsummaryrefslogtreecommitdiffstats
path: root/mppa_k1c/InstructionScheduler.ml
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-05-03 10:43:53 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-05-03 10:43:53 +0200
commitfb77ce264f957a1ee3f87e537b55afbb10785ecf (patch)
treee65797eee4cac155a9c87b2ca0ed35b2bb848bdf /mppa_k1c/InstructionScheduler.ml
parent6783207fa4282f53af1da8bf09e4819716acde64 (diff)
downloadcompcert-kvx-fb77ce264f957a1ee3f87e537b55afbb10785ecf.tar.gz
compcert-kvx-fb77ce264f957a1ee3f87e537b55afbb10785ecf.zip
Renaming "dumb" scheduling into "greedy"
Diffstat (limited to 'mppa_k1c/InstructionScheduler.ml')
-rw-r--r--mppa_k1c/InstructionScheduler.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mppa_k1c/InstructionScheduler.ml b/mppa_k1c/InstructionScheduler.ml
index f9f99b1f..1fa55c9b 100644
--- a/mppa_k1c/InstructionScheduler.ml
+++ b/mppa_k1c/InstructionScheduler.ml
@@ -364,7 +364,7 @@ let bundles_to_schedule problem bundles : solution =
end
) bundles; schedule;;
-let dumb_scheduler (problem : problem) : solution option =
+let greedy_scheduler (problem : problem) : solution option =
let bundles = make_bundles problem 0 in
Some (bundles_to_schedule problem bundles);;