aboutsummaryrefslogtreecommitdiffstats
path: root/extraction/convert
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2009-01-29 09:13:53 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2009-01-29 09:13:53 +0000
commit26fcc4dbd92f367ecb20f4457cdf887eea0b6568 (patch)
tree0bec42a8bbb4c8d70e31d60e055409ef31e10da3 /extraction/convert
parentf6ecbb948ccf7f8a4e156eb29e3a41e7f2953407 (diff)
downloadcompcert-26fcc4dbd92f367ecb20f4457cdf887eea0b6568.tar.gz
compcert-26fcc4dbd92f367ecb20f4457cdf887eea0b6568.zip
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 'extraction/convert')
-rwxr-xr-xextraction/convert10
1 files changed, 5 insertions, 5 deletions
diff --git a/extraction/convert b/extraction/convert
index b3d25336..879cfe50 100755
--- a/extraction/convert
+++ b/extraction/convert
@@ -1,9 +1,9 @@
#!/usr/bin/perl -pi
-s/\bList\b/CList/g;
-s/\bString\b/CString/g;
-s/\bInt\.Z_as_Int\b/CInt.Z_as_Int/g;
-s/\bInt\.Int\b/CInt.Int/g;
-s/\bInt\.MoreInt\b/CInt.MoreInt/g;
+s/\bList\b/CoqList/g;
+s/\bString\b/CoqString/g;
+s/\bInt\.Z_as_Int\b/CoqInt.Z_as_Int/g;
+s/\bInt\.Int\b/CoqInt.Int/g;
+s/\bInt\.MoreInt\b/CoqInt.MoreInt/g;
s/^open Int$//;