[wwwdocs] PATCH for Re: GCC mirror - Please read it

2018-03-18 Thread Gerald Pfeifer
On Sat, 3 Feb 2018, BigSearcher Info wrote: > please let me know if you need the mirror I set for the GCC community > some weeks ago. Thank you for doing that and letting us know, and sorry for the delay in responding. I just added this to the official GCC mirrors list per the patch below. Chee

Re: [PATCH 0/3] wwwdocs: Updates for gcc 8 changes

2018-03-18 Thread David Malcolm
On Mon, 2018-03-19 at 00:02 +0100, Gerald Pfeifer wrote: > Hi David, > > On Fri, 16 Mar 2018, David Malcolm wrote: > > This patch kit is for the website; I generated it against a local > > git mirror of the CVS repo. > > > > It adds lots of examples of colorized output from GCC, which > > I gener

[wwwdocs] readings.html - remove SGI STL page

2018-03-18 Thread Gerald Pfeifer
...which redirects to an empty dummy as I mentioned in an earlier mail. Committed. Gerald Index: readings.html === RCS file: /cvs/gcc/wwwdocs/htdocs/readings.html,v retrieving revision 1.291 diff -u -r1.291 readings.html --- reading

[libstdc++,doc] Adjust links to www.fsf.org

2018-03-18 Thread Gerald Pfeifer
2018-03-19 Gerald Pfeifer * doc/xml/api.xml: www.fsf.org has moved to https. Also omit trailing slash for domain level link. * doc/xml/faq.xml: Ditto. * doc/xml/manual/appendix_free.xml (software): Ditto. * doc/xml/manual/intro.xml: Ditto. * doc/

[libstc++,doc] doc/xml/manual/documentation_hacking.xml: Adjust link to docbook.org.

2018-03-18 Thread Gerald Pfeifer
2018-03-19 Gerald Pfeifer * doc/xml/manual/documentation_hacking.xml: Adjust link to docbook.org. Just more https; applied. Gerald Index: doc/xml/manual/documentation_hacking.xml === --- doc/xml/manual/documentat

Re: [patch, fortran] Fix type conversion in large array constructors with iterators

2018-03-18 Thread Steve Kargl
On Sun, Mar 18, 2018 at 11:23:37PM +0100, Thomas König wrote: > Hello world, > > the attached patch fixes the bug that Steve found; the patch itself > simply makes sure to copy a constructor instead of only the value > of the constructor when converting types. > > Regressoin-tested. OK for trunk?

Re: [PATCH 3/3] Document my gcc 8 changes for the website

2018-03-18 Thread Gerald Pfeifer
On Fri, 16 Mar 2018, David Malcolm wrote: > This patch documents various improvements in GCC 8 for our website. Wow. > There are lots of examples of colorized output from GCC (generated > using ansi2html) Wow^2. That must have been a lot of work! (Both improving the diagnostics as well as cre

Re: [wwwdocs] Release notes for SVE

2018-03-18 Thread Gerald Pfeifer
Hi Richard, On Fri, 2 Mar 2018, Richard Sandiford wrote: > This patch updates the release notes to mention SVE. OK to install? this looks fine, thank you! > Index: wwwdocs/htdocs/gcc-8/changes.html > === > +The Scalable Vector

Re: [PATCH 0/3] wwwdocs: Updates for gcc 8 changes

2018-03-18 Thread Gerald Pfeifer
Hi David, On Fri, 16 Mar 2018, David Malcolm wrote: > This patch kit is for the website; I generated it against a local > git mirror of the CVS repo. > > It adds lots of examples of colorized output from GCC, which > I generated using ansi2html.sh, an LGPLv2 script for turning ANSI > color codes

Re: [PATCH 2/3] Add htdocs/ansi2html.css

2018-03-18 Thread Gerald Pfeifer
On Fri, 16 Mar 2018, David Malcolm wrote: > Generated by: > > ansi2html.sh --css-only --bg=dark --palette=xterm Okay, modulo my questions in the previous mail (esp. the one on pruning). Gerald

[patch, fortran] Fix type conversion in large array constructors with iterators

2018-03-18 Thread Thomas König
Hello world, the attached patch fixes the bug that Steve found; the patch itself simply makes sure to copy a constructor instead of only the value of the constructor when converting types. Regressoin-tested. OK for trunk? Maybe this is also a candidate for gcc-7, because of the silent wrong-cod

Re: [PATCH] Improve boostrap-ubsan config (PR bootstrap/64914).

2018-03-18 Thread Martin Liška
PING^2 On 03/08/2018 10:27 AM, Martin Liška wrote: PING^1 On 03/01/2018 12:53 PM, Martin Liška wrote: On 03/01/2018 12:45 PM, Jakub Jelinek wrote: On Thu, Mar 01, 2018 at 12:41:37PM +0100, Martin Liška wrote: I've been running periodically UBSAN bootstrap and as the runtime errors are not ca

Re: [PATCH] Prefer mempcpy to memcpy on x86_64 target (PR middle-end/81657).

2018-03-18 Thread Martin Liška
PING^1 On 03/14/2018 02:54 PM, Martin Liška wrote: On 03/14/2018 02:07 PM, Jakub Jelinek wrote: On Wed, Mar 14, 2018 at 01:54:39PM +0100, Martin Liška wrote: --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3651,13 +3651,24 @@ expand_builtin_memory_copy_args (tree dest, tree src, tree len, s

New Spanish PO file for 'gcc' (version 8.1-b20180128)

2018-03-18 Thread Translation Project Robot
Hello, gentle maintainer. This is a message from the Translation Project robot. A revised PO file for textual domain 'gcc' has been submitted by the Spanish team of translators. The file is available at: http://translationproject.org/latest/gcc/es.po (This file, 'gcc-8.1-b20180128.es.po',

Re: [PATCH] PR fortran/77414 -- catch re-declaration of subroutines

2018-03-18 Thread Thomas Koenig
Hi Steve, The attached patch fixes an ICE by reporting an error for the re-declaration of a subroutine by trying to include itself as an internal subprogram. Regression tested on x86_64-*-freebsd and i568-*-freebsd. OK to commit? Also ok. Thanks for the patch! Regards Thomas

Re: [PATCH] PR fortran/65453 -- procedure statement vs subprogram name clash

2018-03-18 Thread Thomas König
Hi Steve, The attached patch fixes an ICE by detecting a name clash between a procedure statement and a contained subprogram. Regression tested on x86_64-*-freebsd. The patch is OK. Thanks! Regards Thomas (In case anybody is wondering about my e-mail address: I have a new one and

[PATCH] PR fortran/77414 -- catch re-declaration of subroutines

2018-03-18 Thread Steve Kargl
The attached patch fixes an ICE by reporting an error for the re-declaration of a subroutine by trying to include itself as an internal subprogram. Regression tested on x86_64-*-freebsd and i568-*-freebsd. OK to commit? 2018-03-17 Steven G. Kargl PR fortran/77414 * decl.c (ge

Re: [PATCH] [Microblaze]: PIC Data Text Relative

2018-03-18 Thread Andrew Sadek
Hello Michael, I have run the test using the new PIC options. Actually, I have discovered 2 unhandled cases in 'microblaze_expand_move' + missing conditions in linker relax leading some test cases execution to fail. After fixing them, I made a re-run for the whole regression, and the results analo