aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
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 /cparser
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 'cparser')
-rw-r--r--cparser/Diagnostics.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Diagnostics.ml b/cparser/Diagnostics.ml
index 2b8a3eb4..2eaf6436 100644
--- a/cparser/Diagnostics.ml
+++ b/cparser/Diagnostics.ml
@@ -473,7 +473,7 @@ let raise_on_errors () =
let crash exn =
if Version.buildnr <> "" && Version.tag <> "" then begin
let backtrace = Printexc.get_backtrace () in
- eprintf "%tThis is CompCert, %s, Build:%s, Tag:%s%t\n"
+ eprintf "%tThis is CompCert, Release %s, Build:%s, Tag:%s%t\n"
bc Version.version Version.buildnr Version.tag rsc;
eprintf "Backtrace (please include this in your support request):\n%s"
backtrace;