summaryrefslogtreecommitdiff
path: root/caml/Coloringaux.ml
diff options
context:
space:
mode:
Diffstat (limited to 'caml/Coloringaux.ml')
-rw-r--r--caml/Coloringaux.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/caml/Coloringaux.ml b/caml/Coloringaux.ml
index 984fbb3..f11738d 100644
--- a/caml/Coloringaux.ml
+++ b/caml/Coloringaux.ml
@@ -278,13 +278,13 @@ let class_of_type = function Tint -> 0 | Tfloat -> 1
let num_register_classes = 2
let caller_save_registers = [|
- array_of_coqlist Conventions.int_caller_save_regs;
- array_of_coqlist Conventions.float_caller_save_regs
+ Array.of_list Conventions.int_caller_save_regs;
+ Array.of_list Conventions.float_caller_save_regs
|]
let callee_save_registers = [|
- array_of_coqlist Conventions.int_callee_save_regs;
- array_of_coqlist Conventions.float_callee_save_regs
+ Array.of_list Conventions.int_callee_save_regs;
+ Array.of_list Conventions.float_callee_save_regs
|]
let num_available_registers =