aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsmaux.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2019-05-06 18:54:31 +0200
committerXavier Leroy <xavierleroy@users.noreply.github.com>2019-05-10 14:44:26 +0200
commit1e821bc1f1fb7a6b73ff1468b8b34f61b78cf304 (patch)
treea2d328363060dbf84fc264f9c9a22d5674ae420d /backend/PrintAsmaux.ml
parentdf81fb38c941852919246371840c5fdb003ad0fb (diff)
downloadcompcert-kvx-1e821bc1f1fb7a6b73ff1468b8b34f61b78cf304.tar.gz
compcert-kvx-1e821bc1f1fb7a6b73ff1468b8b34f61b78cf304.zip
Change to AbsInt version string.
The AbsInt build number no longer contains "release", so it must be printed additionally.
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 6f293bf4..0fd164b0 100644
--- a/backend/PrintAsmaux.ml
+++ b/backend/PrintAsmaux.ml
@@ -289,7 +289,7 @@ let print_inline_asm print_preg oc txt sg args res =
let print_version_and_options oc comment =
let version_string =
if Version.buildnr <> "" && Version.tag <> "" then
- sprintf "%s, Build: %s, Tag: %s" Version.version Version.buildnr Version.tag
+ sprintf "Release: %s, Build: %s, Tag: %s" Version.version Version.buildnr Version.tag
else
Version.version in
fprintf oc "%s File generated by CompCert %s\n" comment version_string;