diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-17 11:06:36 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-17 11:06:36 -0500 |
commit | 4cc00c5a1c18d07b8cf1ffbd1de2f4255e13acfb (patch) | |
tree | b3e294ba8618e6850ee66b026ff201aae9f62d4c /gcc/c-common.c | |
parent | 531e78ef6faef0f056304d6077e4e1c19850b43c (diff) | |
download | gcc-4cc00c5a1c18d07b8cf1ffbd1de2f4255e13acfb.zip gcc-4cc00c5a1c18d07b8cf1ffbd1de2f4255e13acfb.tar.gz gcc-4cc00c5a1c18d07b8cf1ffbd1de2f4255e13acfb.tar.bz2 |
(print_char_table): Allow `L' for `u'.
From-SVN: r8477
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 6735b5a..f3844e2 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -532,7 +532,7 @@ typedef struct { static format_char_info print_char_table[] = { { "di", 0, T_I, T_I, T_L, T_LL, T_LL, "-wp0 +" }, { "oxX", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0#" }, - { "u", 0, T_UI, T_UI, T_UL, T_ULL, NULL, "-wp0" }, + { "u", 0, T_UI, T_UI, T_UL, T_ULL, T_ULL, "-wp0" }, /* Two GNU extensions. */ { "Z", 0, T_ST, NULL, NULL, NULL, NULL, "-wp0" }, { "m", 0, T_UI, T_UI, T_UL, NULL, NULL, "-wp" }, |