From d94cde01caf1c1de657a0f1f0b5798a3e8b9341b Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 27 May 2002 17:19:44 +0000 Subject: [PATCH] * c-common.c (c_common_init): Use intmax_t for now. From-SVN: r53935 --- gcc/ChangeLog | 4 ++++ gcc/c-common.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 302a7d4703d..6274dc98b94 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-05-27 Neil Booth + + * c-common.c (c_common_init): Use intmax_t for now. + 2002-05-24 Andrew Haley * fold-const.c (fold): Don't convert (T)(x & c) into (T)x & (T)c diff --git a/gcc/c-common.c b/gcc/c-common.c index 421f7f267ed..4a4c06074de 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -4488,7 +4488,7 @@ c_common_init (filename) /* Set up preprocessor arithmetic. Must be done after call to c_common_nodes_and_builtins for wchar_type_node to be good. */ - if (flag_isoc99) + if (flag_isoc99 || 1) options->precision = TYPE_PRECISION (intmax_type_node); else options->precision = TYPE_PRECISION (long_integer_type_node); -- 2.30.2