aboutsummaryrefslogtreecommitdiffstats
path: root/scheduling/InstructionScheduler.mli
diff options
context:
space:
mode:
authornicolas.nardino <nicolas.nardino@ens-lyon.fr>2021-06-15 12:07:43 +0200
committernicolas.nardino <nicolas.nardino@ens-lyon.fr>2021-06-15 12:07:43 +0200
commit19464b3992eadf7670acc7231896103ab54885e5 (patch)
tree2038312f1b34d901c036cf699f534a271a09cecc /scheduling/InstructionScheduler.mli
parentbff4e6ff0b782619b6fcc18751fa575cbb11de68 (diff)
downloadcompcert-kvx-19464b3992eadf7670acc7231896103ab54885e5.tar.gz
compcert-kvx-19464b3992eadf7670acc7231896103ab54885e5.zip
fixing
Still need to find what to do when pressure is high but there are no instructions available that decrease it
Diffstat (limited to 'scheduling/InstructionScheduler.mli')
-rw-r--r--scheduling/InstructionScheduler.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheduling/InstructionScheduler.mli b/scheduling/InstructionScheduler.mli
index 9b6f7a3c..b5a5463b 100644
--- a/scheduling/InstructionScheduler.mli
+++ b/scheduling/InstructionScheduler.mli
@@ -30,7 +30,7 @@ type problem = {
(** Register type map. *)
reference_counting : ((Registers.reg, int * int) Hashtbl.t
- * (Registers.reg list array)) option;
+ * ((Registers.reg * bool) list array)) option;
(** See RTLpathScheduleraux.reference_counting. *)
instruction_usages: int array array;