aboutsummaryrefslogtreecommitdiffstats
path: root/mppa_k1c/InstructionScheduler.ml
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-05-03 11:30:39 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2019-05-03 11:30:39 +0200
commitd9ac009e14007e7b7e45e82f6187ae31d14aee94 (patch)
tree5f0e12eccd40bcc688408cb5d07dc8d850832384 /mppa_k1c/InstructionScheduler.ml
parentcba53c98b999eea7984e4ffd24a9449abea3e0e2 (diff)
parentfb77ce264f957a1ee3f87e537b55afbb10785ecf (diff)
downloadcompcert-kvx-d9ac009e14007e7b7e45e82f6187ae31d14aee94.tar.gz
compcert-kvx-d9ac009e14007e7b7e45e82f6187ae31d14aee94.zip
Merge remote-tracking branch 'origin/mppa-work' into mppa-peephole
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);;