diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-25 13:35:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-25 13:35:03 +0000 |
commit | 0ae97dea38e26699e5bed9f190f0452a05d65b23 (patch) | |
tree | 01eda0008a4f0794eaa56b71c842f25497c0f7ff /stdio-common | |
parent | 03197d471033c3d3da50108461ec4dc5aab069fa (diff) | |
download | glibc-0ae97dea38e26699e5bed9f190f0452a05d65b23.tar.gz glibc-0ae97dea38e26699e5bed9f190f0452a05d65b23.tar.xz glibc-0ae97dea38e26699e5bed9f190f0452a05d65b23.zip |
Update.
* stdio-common/vfprintf.c (vfprintf): Don't implement special handling for long long if it is the same as long.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/vfprintf.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 263b0238c7..dfaf4191c7 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -180,8 +180,12 @@ extern void __funlockfile (FILE *); } \ while (0) -/* For handling long_double and longlong we use the same flag. */ -#ifndef is_longlong +/* For handling long_double and longlong we use the same flag. If + `long' and `long long' are effectively the same type define it to + zero. */ +#if LONG_MAX == LONG_LONG_MAX +# define is_longlong 0 +#else # define is_longlong is_long_double #endif @@ -1228,17 +1232,17 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) JUMP (*++f, step4_jumps); LABEL (mod_size_t): - is_longlong = sizeof (size_t) > sizeof (unsigned long int); + is_long_double = sizeof (size_t) > sizeof (unsigned long int); is_long = sizeof (size_t) > sizeof (unsigned int); JUMP (*++f, step4_jumps); LABEL (mod_ptrdiff_t): - is_longlong = sizeof (ptrdiff_t) > sizeof (unsigned long int); + is_long_double = sizeof (ptrdiff_t) > sizeof (unsigned long int); is_long = sizeof (ptrdiff_t) > sizeof (unsigned int); JUMP (*++f, step4_jumps); LABEL (mod_intmax_t): - is_longlong = sizeof (intmax_t) > sizeof (unsigned long int); + is_long_double = sizeof (intmax_t) > sizeof (unsigned long int); is_long = sizeof (intmax_t) > sizeof (unsigned int); JUMP (*++f, step4_jumps); |