diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2009-01-29 09:13:53 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2009-01-29 09:13:53 +0000 |
commit | 26fcc4dbd92f367ecb20f4457cdf887eea0b6568 (patch) | |
tree | 0bec42a8bbb4c8d70e31d60e055409ef31e10da3 /cfrontend | |
parent | f6ecbb948ccf7f8a4e156eb29e3a41e7f2953407 (diff) |
Conflict between extraction/CList and cil/obj/xxx/clist on case-insensitive file systems. Replaced CList by CoqList and likewise for CString and CInt. Removed useless references to CList in hand-written Caml code.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@951 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cfrontend')
-rw-r--r-- | cfrontend/Cil2Csyntax.ml | 3 | ||||
-rw-r--r-- | cfrontend/PrintCsyntax.ml | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/cfrontend/Cil2Csyntax.ml b/cfrontend/Cil2Csyntax.ml index 41fe1d4..e5ef64a 100644 --- a/cfrontend/Cil2Csyntax.ml +++ b/cfrontend/Cil2Csyntax.ml @@ -19,7 +19,6 @@ CIL -> CabsCoq translator **************************************************************************) open Cil -open CList open Camlcoq open AST open Csyntax @@ -866,7 +865,7 @@ let convertInit init = align al; cvtInit init - in cvtInit init; CList.rev !k + in cvtInit init; List.rev !k (** Convert a [Cil.initinfo] into a list of [AST.init_data] *) diff --git a/cfrontend/PrintCsyntax.ml b/cfrontend/PrintCsyntax.ml index bb25339..5513b41 100644 --- a/cfrontend/PrintCsyntax.ml +++ b/cfrontend/PrintCsyntax.ml @@ -17,7 +17,6 @@ open Format open Camlcoq -open CList open Datatypes open AST open Csyntax |