diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2009-04-23 08:44:55 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-04-23 08:44:55 +0000 |
commit | 4782dfa72f25706e3276784417630b6d163e784d (patch) | |
tree | 412429910bb7bc48d11c2822258a78fd643f718d /gcc/c-format.c | |
parent | bf7580081f80221fa08b86dafded43635095e788 (diff) | |
download | gcc-4782dfa72f25706e3276784417630b6d163e784d.zip gcc-4782dfa72f25706e3276784417630b6d163e784d.tar.gz gcc-4782dfa72f25706e3276784417630b6d163e784d.tar.bz2 |
gcc_diag-1.c (foo): Don't check that %E produces a warning.
2009-04-23 Rafael Avila de Espindola <espindola@google.com>
* gcc.dg/format/gcc_diag-1.c (foo): Don't check that %E produces a
warning.
2009-04-23 Rafael Avila de Espindola <espindola@google.com>
* c-format.c (gcc_tdiag_char_table): Add support for %E.
From-SVN: r146638
Diffstat (limited to 'gcc/c-format.c')
-rw-r--r-- | gcc/c-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-format.c b/gcc/c-format.c index 24a292f..f64cb21 100644 --- a/gcc/c-format.c +++ b/gcc/c-format.c @@ -588,7 +588,7 @@ static const format_char_info gcc_tdiag_char_table[] = { "H", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q", "", NULL }, /* These will require a "tree" at runtime. */ - { "DFJKT", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q+", "", NULL }, + { "DFJKTE", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q+", "", NULL }, { "<>'", 0, STD_C89, NOARGUMENTS, "", "", NULL }, { "m", 0, STD_C89, NOARGUMENTS, "q", "", NULL }, |