aboutsummaryrefslogtreecommitdiffstats
path: root/backend/PrintCminor.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2018-03-13 14:04:49 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2018-03-13 14:04:49 +0100
commit4d7a6709946a0c30e932c00405252b42e348eb64 (patch)
treeaca0e5450b17c0c5443800c30a9e0919fde856d1 /backend/PrintCminor.ml
parent1c477f375f20e882b429175c737ad013ff202c0b (diff)
downloadcompcert-kvx-4d7a6709946a0c30e932c00405252b42e348eb64.tar.gz
compcert-kvx-4d7a6709946a0c30e932c00405252b42e348eb64.zip
Print size argument of Init_space as Z not as int32
Init_space has an argument of type Z and it can exceed the range of a 32-bit integer. Reported by Frédéric Besson.
Diffstat (limited to 'backend/PrintCminor.ml')
-rw-r--r--backend/PrintCminor.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/PrintCminor.ml b/backend/PrintCminor.ml
index c5418d9d..f68c1267 100644
--- a/backend/PrintCminor.ml
+++ b/backend/PrintCminor.ml
@@ -327,7 +327,7 @@ let print_init_data p = function
| Init_int64 i -> fprintf p "%LdLL" (camlint64_of_coqint i)
| Init_float32 f -> fprintf p "float32 %.15F" (camlfloat_of_coqfloat f)
| Init_float64 f -> fprintf p "%.15F" (camlfloat_of_coqfloat f)
- | Init_space i -> fprintf p "[%ld]" (camlint_of_coqint i)
+ | Init_space i -> fprintf p "[%s]" (Z.to_string i)
| Init_addrof(id,off) -> fprintf p "%ld(\"%s\")" (camlint_of_coqint off) (extern_atom id)
let rec print_init_data_list p = function