This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH][C++] Fix PR60761, diagnostics in clones
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Richard Biener <rguenther at suse dot de>
- Cc: gcc-patches at gcc dot gnu dot org, Jan Hubicka <hubicka at ucw dot cz>, jason at redhat dot com
- Date: Tue, 8 Apr 2014 14:02:21 +0200
- Subject: Re: [PATCH][C++] Fix PR60761, diagnostics in clones
- Authentication-results: sourceware.org; auth=none
- References: <alpine dot LSU dot 2 dot 11 dot 1404081353460 dot 31108 at zhemvz dot fhfr dot qr>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Tue, Apr 08, 2014 at 01:58:06PM +0200, Richard Biener wrote:
> t.ii: In function 'void foo(int) <clone>':
> t.ii:14:13: warning: iteration 3u invokes undefined behavior
> [-Waggressive-loop-optimizations]
> z[i] = i;
> ^
Looks reasonable to me, but I'll defer this to Jason.
> 2014-04-08 Richard Biener <rguenther@suse.de>
>
> cp/
> * error.c: Include cgraph.h
Missing dot at the end of line.
> (dump_decl): Print function clones as their origin plus <clone>
> appended instead of just <built-in>.
Jakub