diff options
author | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-18 11:17:52 +0000 |
---|---|---|
committer | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-18 11:17:52 +0000 |
commit | 2b9e35972efedbbbc594d278be0859a155a2274b (patch) | |
tree | 6e8f62722b8c096a18c7f96bbbf77c9c7fc8a01c /gcc/toplev.h | |
parent | 2f3dba54452cbd74cd715daed0fd1bfa02a2c174 (diff) | |
download | gcc-2b9e35972efedbbbc594d278be0859a155a2274b.tar.gz |
2008-08-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* diagnostics.c (permerror_at): Rename as permerror.
(permerror): Delete.
* toplev.h: Likewise.
cp/
* typeck.c: Update all callers.
* init.c: Likewise.
* class.c: Likewise.
* decl.c: Likewise.
* call.c: Likewise.
* except.c: Likewise.
* cvt.c: Likewise.
* typeck2.c: Likewise.
* pt.c: Likewise.
* semantics.c: Likewise.
* name-lookup.c: Likewise.
* lex.c: Likewise.
* decl2.c: Likewise.
* parser.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139193 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index ddf46cd7f9d..435cc97efb2 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -67,9 +67,7 @@ extern void fatal_error (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2) extern bool pedwarn (int, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3); extern bool pedwarn_at (location_t, int, const char *, ...) ATTRIBUTE_GCC_DIAG(3,4); -extern bool permerror (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); -extern bool permerror_at (location_t, const char *, ...) - ATTRIBUTE_GCC_DIAG(2,3); +extern bool permerror (location_t, const char *, ...) ATTRIBUTE_GCC_DIAG(2,3); extern void sorry (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); extern void inform (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); extern void verbatim (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); |