aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsmaux.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-07-01 17:25:44 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-07-01 17:25:44 +0200
commitb59b2b182a6832e1b6ebf3cf7ba4fd1943843b74 (patch)
tree3fa8c338c917d4f72f3408b6a45cffcc6e1e0f8a /backend/PrintAsmaux.ml
parentd8ed56833c508b5103a900ef04975013bd9ba77b (diff)
downloadcompcert-kvx-b59b2b182a6832e1b6ebf3cf7ba4fd1943843b74.tar.gz
compcert-kvx-b59b2b182a6832e1b6ebf3cf7ba4fd1943843b74.zip
Removed the version from the compcert.ini file and add it again in a separate file.
Diffstat (limited to 'backend/PrintAsmaux.ml')
-rw-r--r--backend/PrintAsmaux.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/PrintAsmaux.ml b/backend/PrintAsmaux.ml
index 497760c1..b54188ca 100644
--- a/backend/PrintAsmaux.ml
+++ b/backend/PrintAsmaux.ml
@@ -294,7 +294,7 @@ let print_inline_asm print_preg oc txt sg args res =
(** Print CompCert version and command-line as asm comment *)
let print_version_and_options oc comment =
- fprintf oc "%s File generated by CompCert %s\n" comment Configuration.version;
+ fprintf oc "%s File generated by CompCert %s\n" comment Version.version;
fprintf oc "%s Command line:" comment;
for i = 1 to Array.length Sys.argv - 1 do
fprintf oc " %s" Sys.argv.(i)