From 26fcc4dbd92f367ecb20f4457cdf887eea0b6568 Mon Sep 17 00:00:00 2001 From: xleroy Date: Thu, 29 Jan 2009 09:13:53 +0000 Subject: 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 --- extraction/convert | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'extraction/convert') 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$//; -- cgit