diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 15:23:46 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 15:23:46 +0000 |
commit | dcb91ebed3a93439ef4892c18420c8fd4295a1a3 (patch) | |
tree | 48fc147b480fccd2c625934e1915472ecd6a3e42 /gcc/config/mep | |
parent | cf400ddbafde8ae44c3b09c71e8305cd73c21688 (diff) | |
download | gcc-dcb91ebed3a93439ef4892c18420c8fd4295a1a3.tar.gz |
pretty-print.c (pp_base_format): Remove %H.
2009-07-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
* pretty-print.c (pp_base_format): Remove %H.
* c-format.c (gcc_diag_char_table, gcc_tdiag_char_table,
gcc_cxxdiag_char_table): Likewise.
(init_dynamic_diag_info): Likewise.
* config/mep/mep.c (mep_select_section): Likewise.
testsuite/
* gcc.dg/format/gcc_diag-1.c: Remove tests for %H.
From-SVN: r149333
Diffstat (limited to 'gcc/config/mep')
-rw-r--r-- | gcc/config/mep/mep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/mep/mep.c b/gcc/config/mep/mep.c index 5bb372ad31f..8a705ee8ec5 100644 --- a/gcc/config/mep/mep.c +++ b/gcc/config/mep/mep.c @@ -4601,13 +4601,13 @@ mep_select_section (tree decl, int reloc ATTRIBUTE_UNUSED, case 'i': case 'I': - error ("%Hvariable %D of type %<io%> must be uninitialized", - &DECL_SOURCE_LOCATION (decl), decl); + error_at (DECL_SOURCE_LOCATION (decl), + "variable %D of type %<io%> must be uninitialized", decl); return data_section; case 'c': - error ("%Hvariable %D of type %<cb%> must be uninitialized", - &DECL_SOURCE_LOCATION (decl), decl); + error_at (DECL_SOURCE_LOCATION (decl), + "variable %D of type %<cb%> must be uninitialized", decl); return data_section; } } |