1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* stdio-common/vfprintf.c (vfprintf): Don't implement special
	handling for long long if it is the same as long.
This commit is contained in:
Ulrich Drepper
1999-05-25 13:35:03 +00:00
parent 03197d4710
commit 0ae97dea38
2 changed files with 12 additions and 5 deletions

View File

@@ -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);