From 0b31909422713b90da55349ee2470b15058c68bf Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 23 May 2012 23:43:55 +0000 Subject: Revert r235797. GCC's mis-assumptions has led to incorrect usage of "%q[diouxX]" within FreeBSD sources. --- contrib/gcc/c-format.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'contrib/gcc/c-format.c') diff --git a/contrib/gcc/c-format.c b/contrib/gcc/c-format.c index 75eb9bb..cc3f9be 100644 --- a/contrib/gcc/c-format.c +++ b/contrib/gcc/c-format.c @@ -287,11 +287,7 @@ static const format_length_info printf_length_specs[] = { { "h", FMT_LEN_h, STD_C89, "hh", FMT_LEN_hh, STD_C99 }, { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C9L }, -#ifdef __LP64__ - { "q", FMT_LEN_l, STD_EXT, NULL, 0, 0 }, -#else { "q", FMT_LEN_ll, STD_EXT, NULL, 0, 0 }, -#endif { "L", FMT_LEN_L, STD_C89, NULL, 0, 0 }, { "z", FMT_LEN_z, STD_C99, NULL, 0, 0 }, { "Z", FMT_LEN_z, STD_EXT, NULL, 0, 0 }, -- cgit v1.1