This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [Patch: libcpp, c-family, Fortran] Re: Warning about __DATE__ and __TIME__
- From: Ian Lance Taylor <iant at google dot com>
- To: Tom Tromey <tromey at redhat dot com>
- Cc: Tobias Burnus <burnus at net-b dot de>, Gerald Pfeifer <gerald at pfeifer dot com>, GCC Development <gcc at gcc dot gnu dot org>, gcc patches <gcc-patches at gcc dot gnu dot org>, gfortran <fortran at gcc dot gnu dot org>
- Date: Wed, 6 Nov 2013 07:59:27 -0800
- Subject: Re: [Patch: libcpp, c-family, Fortran] Re: Warning about __DATE__ and __TIME__
- Authentication-results: sourceware.org; auth=none
- References: <alpine dot LNX dot 2 dot 00 dot 1310271959580 dot 1528 at trevally dot site> <526D8110 dot 9040502 at net-b dot de> <52780A76 dot 4050702 at net-b dot de> <874n7ppmml dot fsf at fleche dot redhat dot com>
On Wed, Nov 6, 2013 at 7:37 AM, Tom Tromey <tromey@redhat.com> wrote:
>>>>>> "Tobias" == Tobias Burnus <burnus@net-b.de> writes:
>
> Tobias> + cpp_warning (pfile, CPP_W_DATE_TIME, "Macro \"%s\" might prevent "
> Tobias> + "reproduce builds", NODE_NAME (node));
>
> Tobias> + cpp_warning (pfile, CPP_W_DATE_TIME, "Macro \"%s\" might prevent "
> Tobias> + "reproduce builds", NODE_NAME (node));
>
> I think change "reproduce" to "reproducible" in these warnings.
In GCC warnings pretty much always start with a lower case letter.
Any reason not to s/Macro/macro/ here?
Ian