diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-04-05 02:16:29 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-04-05 02:16:29 +0000 |
commit | 82592d1958f04b9d94c944120248d114a03acb88 (patch) | |
tree | f47f1232ed0c18273c691f097467d342a011cfc3 /gnu/egcs/gcc | |
parent | fe43ff19491fcee928eb8cc3af7cc840a71f7663 (diff) |
- accept l modifier for %f
- while here; also accept %F
fixes devel/libconfuse on gcc2 archs
tested by naddy@ on VAX
"no objection" miod@
Diffstat (limited to 'gnu/egcs/gcc')
-rw-r--r-- | gnu/egcs/gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/c-common.c b/gnu/egcs/gcc/c-common.c index 26e3cd998d2..42632c054c3 100644 --- a/gnu/egcs/gcc/c-common.c +++ b/gnu/egcs/gcc/c-common.c @@ -1433,7 +1433,7 @@ static format_char_info print_char_table[] = { { "u", 0, T_UI, T_UI, T_UI, T_UL, T_ULL, T_ULL, T_ST, "-wp0" }, /* A GNU extension. */ { "m", 0, T_V, NULL, NULL, NULL, NULL, NULL, NULL, "-wp" }, - { "feEgGaA", 0, T_D, NULL, NULL, NULL, NULL, T_LD, NULL, "-wp0 +#" }, + { "fFeEgGaA", 0, T_D, NULL, NULL, T_D, NULL, T_LD, NULL, "-wp0 +#" }, { "c", 0, T_I, NULL, NULL, T_W, NULL, NULL, NULL, "-w" }, { "C", 0, T_W, NULL, NULL, NULL, NULL, NULL, NULL, "-w" }, { "s", 1, T_C, NULL, NULL, T_W, NULL, NULL, NULL, "-wp" }, @@ -1446,7 +1446,7 @@ static format_char_info print_char_table[] = { static format_char_info scan_char_table[] = { { "di", 1, T_I, T_C, T_S, T_L, T_LL, T_LL, NULL, "*" }, { "ouxX", 1, T_UI, T_UC, T_US, T_UL, T_ULL, T_ULL, NULL, "*" }, - { "efgEGaA", 1, T_F, NULL, NULL, T_D, NULL, T_LD, NULL, "*" }, + { "efFgEGaA", 1, T_F, NULL, NULL, T_D, NULL, T_LD, NULL, "*" }, { "c", 1, T_C, NULL, NULL, T_W, NULL, NULL, NULL, "*" }, { "s", 1, T_C, NULL, NULL, T_W, NULL, NULL, NULL, "*a" }, { "[", 1, T_C, NULL, NULL, NULL, NULL, NULL, NULL, "*a" }, |