aboutsummaryrefslogtreecommitdiffstats
path: root/caml/Allocationaux.ml
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-03-09 09:38:44 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-03-09 09:38:44 +0000
commitb6e17910ddf7874e2d6d02623414674a654f9fcc (patch)
tree2f4c1a4da309e07cfa80535f63aef604150c519d /caml/Allocationaux.ml
parenta0a5ac6bdf9450a57c2306aeda4b4add980c79bd (diff)
downloadcompcert-kvx-b6e17910ddf7874e2d6d02623414674a654f9fcc.tar.gz
compcert-kvx-b6e17910ddf7874e2d6d02623414674a654f9fcc.zip
Renommage List -> CList lors de l'extraction
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@8 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'caml/Allocationaux.ml')
-rw-r--r--caml/Allocationaux.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/caml/Allocationaux.ml b/caml/Allocationaux.ml
index 8e4f3284..c682c3c1 100644
--- a/caml/Allocationaux.ml
+++ b/caml/Allocationaux.ml
@@ -1,6 +1,6 @@
open Camlcoq
open Datatypes
-open List
+open CList
open AST
open Locations
@@ -36,4 +36,4 @@ let parallel_move_order lsrc ldst =
for i = 0 to n - 1 do
if status.(i) = To_move then move_one i
done;
- List.rev !moves
+ CList.rev !moves