From 8f2e818c444363e29675d569ceaac48203f9d006 Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 2 Feb 2013 11:32:47 +0000 Subject: Errors for excessively large global variables or stack frames. test/: update Makefiles so that "all" is the default target. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2107 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- arm/PrintAsm.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm') diff --git a/arm/PrintAsm.ml b/arm/PrintAsm.ml index 9d09fc1..d90d7b6 100644 --- a/arm/PrintAsm.ml +++ b/arm/PrintAsm.ml @@ -719,8 +719,8 @@ let print_init oc = function fprintf oc " .quad %Ld %s %.18g\n" (camlint64_of_coqint (Floats.Float.bits_of_double n)) comment (camlfloat_of_coqfloat n) | Init_space n -> - let n = Z.to_int32 n in - if n > 0l then fprintf oc " .space %ld\n" n + if Z.gt n Z.zero then + fprintf oc " .space %s\n" (Z.to_string n) | Init_addrof(symb, ofs) -> fprintf oc " .word %a\n" print_symb_ofs (symb, ofs) -- cgit v1.2.3