aboutsummaryrefslogtreecommitdiffstats
path: root/caml
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-09-11 16:19:46 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-09-11 16:19:46 +0000
commitc26b35f57f673a9cef1994bb9da29a63dafce97c (patch)
treebe474557b9329c09532d65019dc8b85efa666626 /caml
parent02e7ed8a362a7cd5a1a85571dee8b39c9ed7144f (diff)
downloadcompcert-c26b35f57f673a9cef1994bb9da29a63dafce97c.tar.gz
compcert-c26b35f57f673a9cef1994bb9da29a63dafce97c.zip
Utiliser l'extension .light.c au lieu de .clight
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@98 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'caml')
-rw-r--r--caml/Main2.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/caml/Main2.ml b/caml/Main2.ml
index bac473f9..26301475 100644
--- a/caml/Main2.ml
+++ b/caml/Main2.ml
@@ -85,7 +85,7 @@ let process_c_file sourcename =
exit 2 in
(* Save Csyntax if requested *)
if !save_csyntax then begin
- let oc = open_out (targetname ^ ".clight") in
+ let oc = open_out (targetname ^ ".light.c") in
PrintCsyntax.print_program (Format.formatter_of_out_channel oc) csyntax;
close_out oc
end;