diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2008-08-13 12:26:18 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2008-08-13 12:26:18 +0000 |
commit | e3f05c4e92cbf9464253d7886899204fe7b9e0b8 (patch) | |
tree | 597c065f3b8f97d4f1e4409526161d79fb2688e3 /gcc | |
parent | c71cfaafc1d93ff3f955ac587fd745c0785f340b (diff) | |
download | gcc-e3f05c4e92cbf9464253d7886899204fe7b9e0b8.zip gcc-e3f05c4e92cbf9464253d7886899204fe7b9e0b8.tar.gz gcc-e3f05c4e92cbf9464253d7886899204fe7b9e0b8.tar.bz2 |
toplev.h (pedwarn_at): Fix declaration.
2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* toplev.h (pedwarn_at): Fix declaration.
From-SVN: r139054
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/toplev.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4086838..f07113a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org> + + * toplev.h (pedwarn_at): Fix declaration. + 2008-08-13 Joseph Myers <joseph@codesourcery.com> * config/sparc/linux64.h (LINK_ARCH32_SPEC, LINK_ARCH64_SPEC, diff --git a/gcc/toplev.h b/gcc/toplev.h index ae61767..ddf46cd 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -66,6 +66,7 @@ extern void fatal_error (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2) /* Pass one of the OPT_W* from options.h as the first parameter. */ 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); |