aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintAsmaux.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-09-30 15:05:11 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-09-30 15:05:11 +0200
commit6f1a2438a1c9598eab26e0cf43375a83fd547d35 (patch)
treea514af2fee324d38380b356e6406de85df2fc7d1 /backend/PrintAsmaux.ml
parenta4edc066cf42af9e86643d9ddfe815c42798d4c7 (diff)
downloadcompcert-6f1a2438a1c9598eab26e0cf43375a83fd547d35.tar.gz
compcert-6f1a2438a1c9598eab26e0cf43375a83fd547d35.zip
Removed newline in version string and add buildnr and tag if existing to
Producer as well as target system.
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 c0ab3134..079aa6fd 100644
--- a/backend/PrintAsmaux.ml
+++ b/backend/PrintAsmaux.ml
@@ -329,7 +329,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\n" Version.version Version.buildnr Version.tag
+ sprintf "%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;