From: Manuel López-Ibáñez Date: Wed, 13 Aug 2008 12:26:18 +0000 (+0000) Subject: toplev.h (pedwarn_at): Fix declaration. X-Git-Tag: releases/gcc-4.4.0~3155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3f05c4e92cbf9464253d7886899204fe7b9e0b8;p=thirdparty%2Fgcc.git toplev.h (pedwarn_at): Fix declaration. 2008-08-13 Manuel Lopez-Ibanez * toplev.h (pedwarn_at): Fix declaration. From-SVN: r139054 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 40868383c0a9..f07113a13e24 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-08-13 Manuel Lopez-Ibanez + + * toplev.h (pedwarn_at): Fix declaration. + 2008-08-13 Joseph Myers * config/sparc/linux64.h (LINK_ARCH32_SPEC, LINK_ARCH64_SPEC, diff --git a/gcc/toplev.h b/gcc/toplev.h index ae61767035cb..ddf46cd7f9df 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);