Announcing Iain Sandoe as Objective-C/C++ maintainer

2015-01-12 Thread Jeff Law
I'm pleased to announce that Iain Sandoe has been appointed as a maintainer for the Objective-C and Objective-C++ front-ends. Iain, please add yourself as a maintainer for those front-ends in the MAINTAINERS file. Jeff

Announcing Marek Polacek as C front-end reviewer

2015-01-12 Thread Jeff Law
I'm pleased to announce that Marek Polacek has been appointed as a reviewer for the C front-end. Marek, please add yourself as a reviewer for the C front end in the MAINTAINERS file. Jeff

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Joel Sherrill
On 1/12/2015 3:18 PM, Tobias Burnus wrote: > Hi Joel, > > Am 12.01.2015 um 22:04 schrieb Joel Sherrill: >> That was very close. >> >> cat out.txt | \ >>perl -e '$in = join("", ); if ($in =~ m/^1 2 3(\n|\r\n|\r)1 2 >> 3(\n|\r\n|\r)((\n|\r\n|\r)\*\*\* EXIT code 0)(\n|\r\n|\r)?$/s) { print >> "

RE: Cross compiling and multiple sysroot question

2015-01-12 Thread Steve Ellcey
On Mon, 2015-01-12 at 20:58 +, Joseph Myers wrote: > On Mon, 12 Jan 2015, Matthew Fortune wrote: > > > MIPS does this too for mips64-linux-gnu as it has n32 for the default > > multilib which gets placed in lib32. I don't honestly know how the multilib > > spec doesn't end up building 4 multil

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Tobias Burnus
Hi Joel, Am 12.01.2015 um 22:04 schrieb Joel Sherrill: That was very close. cat out.txt | \ perl -e '$in = join("", ); if ($in =~ m/^1 2 3(\n|\r\n|\r)1 2 3(\n|\r\n|\r)((\n|\r\n|\r)\*\*\* EXIT code 0)(\n|\r\n|\r)?$/s) { print "matched\n" } else { print "not matched\n" };' That won't work

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Joel Sherrill
On 1/12/2015 2:49 PM, Tobias Burnus wrote: > Joel Sherrill wrote: >> run.txt is the cut and paste of the log file which reflects DejaGNU's >> view of the run. > Which means that it hopefully matches every bit of the original output > and that no editor interferes by adding or removing line break

RE: Cross compiling and multiple sysroot question

2015-01-12 Thread Joseph Myers
On Mon, 12 Jan 2015, Matthew Fortune wrote: > MIPS does this too for mips64-linux-gnu as it has n32 for the default > multilib which gets placed in lib32. I don't honestly know how the multilib > spec doesn't end up building 4 multilibs though. I'm assuming the fact > that the default ABI is added

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Tobias Burnus
Joel Sherrill wrote: run.txt is the cut and paste of the log file which reflects DejaGNU's view of the run. Which means that it hopefully matches every bit of the original output and that no editor interferes by adding or removing line breaks. Additionally, I think you are right that the "***

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Joel Sherrill
On 1/12/2015 1:14 PM, Tobias Burnus wrote: > Joel Sherrill wrote: >> On 1/12/2015 10:30 AM, Andreas Schwab wrote: >>> Joel Sherrill writes: >>> FAIL: gfortran.dg/g77/f77-edit-x-out.f -Os output pattern test, is 1 2 3 1 2 3 , should match ^1 2 3( | |)1 2 3(

RE: Cross compiling and multiple sysroot question

2015-01-12 Thread Matthew Fortune
> On Mon, 12 Jan 2015, Steve Ellcey wrote: > > > MULTILIB_OSDIRNAMES += mips32r2=mipsr2/lib MULTILIB_OSDIRNAMES += > > .=mipsr2/lib > > > > I don't think the first one would work because -mips32r2 is the > > default architecture and is not explicitly listed in MULTILIB_OPTIONS > > and I don't thin

Re: IRA : Changes in the cost of putting allocno into memory.

2015-01-12 Thread Vladimir Makarov
On 2015-01-12 2:25 PM, Jeff Law wrote: On 01/08/15 04:00, Ajit Kumar Agarwal wrote: Hello Vladimir: We have made the changes in the ira-color.c in ira_loop_edge_freq and move_spill_restore. The main motivation behind the change is to reduce the memory instruction with respect to the Loops.

Re: IRA : Changes in the cost of putting allocno into memory.

2015-01-12 Thread Jeff Law
On 01/08/15 04:00, Ajit Kumar Agarwal wrote: Hello Vladimir: We have made the changes in the ira-color.c in ira_loop_edge_freq and move_spill_restore. The main motivation behind the change is to reduce the memory instruction with respect to the Loops. The changes are done to not to consider

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Tobias Burnus
Joel Sherrill wrote: On 1/12/2015 10:30 AM, Andreas Schwab wrote: Joel Sherrill writes: FAIL: gfortran.dg/g77/f77-edit-x-out.f -Os output pattern test, is 1 2 3 1 2 3 , should match ^1 2 3( | |)1 2 3( | |)$ Where is the \r gone? The pattern has (\n|\r\n|\r). I am not exactly sure wh

Re: Cross compiling and multiple sysroot question

2015-01-12 Thread Joseph Myers
On Mon, 12 Jan 2015, Steve Ellcey wrote: > MULTILIB_OSDIRNAMES += mips32r2=mipsr2/lib > MULTILIB_OSDIRNAMES += .=mipsr2/lib > > I don't think the first one would work because -mips32r2 is the default > architecture and is not explicitly listed in MULTILIB_OPTIONS and I > don't think the second fo

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Andreas Schwab
Joel Sherrill writes: > On 1/12/2015 10:30 AM, Andreas Schwab wrote: >> Joel Sherrill writes: >> >>> FAIL: gfortran.dg/g77/f77-edit-x-out.f -Os output pattern test, is 1 2 3 >>> 1 2 3 >>> >>> , should match ^1 2 3( >>> | >>> |)1 2 3( >>> | >>> |)$ >> Where is the \r gone? The pattern has

Re: Cross compiling and multiple sysroot question

2015-01-12 Thread Steve Ellcey
On Thu, 2015-01-08 at 22:12 +, Joseph Myers wrote: > On Thu, 8 Jan 2015, Steve Ellcey wrote: > > > So I set these macros and SPECs: > > # m32 and be are defaults > > MULTILIB_OPTIONS = m64 mel # In makefile fragment > > MULTILIB_DIRNAMES = 64 el #

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Joel Sherrill
On 1/12/2015 10:30 AM, Andreas Schwab wrote: > Joel Sherrill writes: > >> FAIL: gfortran.dg/g77/f77-edit-x-out.f -Os output pattern test, is 1 2 3 >> 1 2 3 >> >> , should match ^1 2 3( >> | >> |)1 2 3( >> | >> |)$ > Where is the \r gone? The pattern has (\n|\r\n|\r). I am not exactly sure

Re: gcc Digest 26 Dec 2014 16:51:42 -0000 Issue 7953

2015-01-12 Thread Andrew Senkevich
> From: Andrew Senkevich > To: GCC Mailing List , > openmp-...@dcs-maillist2.engr.illinois.edu, libc-alpha > > Cc: > Date: Fri, 26 Dec 2014 19:51:05 +0300 > Subject: OpenMP vector function ABI for x86_64 > ­Hi, > > during work on addition vector math functions to Glibc and discussions > with co

Re: Allocating some Loop allocno in memory

2015-01-12 Thread Vladimir Makarov
On 2015-01-12 6:33 AM, Ajit Kumar Agarwal wrote: -Original Message- From: Richard Biener [mailto:richard.guent...@gmail.com] Sent: Monday, January 12, 2015 2:33 PM To: Ajit Kumar Agarwal Cc: vmaka...@redhat.com; l...@redhat.com; gcc@gcc.gnu.org; Vinod Kathail; Shail Aditya Gupta; Vidhu

Re: gcc Digest 26 Dec 2014 16:51:42 -0000 Issue 7953

2015-01-12 Thread Jakub Jelinek
On Mon, Jan 12, 2015 at 07:38:10PM +0300, Andrew Senkevich wrote: > > during work on addition vector math functions to Glibc and discussions > > with community was found an issue with meaning of “#pragma omp declare > > simd” (which will appear in math.h). > > > > Issue is there are no working way­

Re: RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Andreas Schwab
Joel Sherrill writes: > FAIL: gfortran.dg/g77/f77-edit-x-out.f -Os output pattern test, is 1 2 3 > 1 2 3 > > , should match ^1 2 3( > | > |)1 2 3( > | > |)$ Where is the \r gone? The pattern has (\n|\r\n|\r). Andreas. -- Andreas Schwab, SUSE Labs, sch...@suse.de GPG Key fingerprint = 0

RTEMS FORTRAN Pattern Failures

2015-01-12 Thread Joel Sherrill
Hi RTEMS has pretty good FORTRAN test results on SPARC and PowerPC but a number fail in pattern matching. It appears to be a CR/LF issue. I have attached the output of f77-edit-x-out (out.txt) and the associated fragment (run.txt) from the test run log which shows the pattern not matching. Based

RE: Allocating some Loop allocno in memory

2015-01-12 Thread Ajit Kumar Agarwal
-Original Message- From: Richard Biener [mailto:richard.guent...@gmail.com] Sent: Monday, January 12, 2015 2:33 PM To: Ajit Kumar Agarwal Cc: vmaka...@redhat.com; l...@redhat.com; gcc@gcc.gnu.org; Vinod Kathail; Shail Aditya Gupta; Vidhumouli Hunsigida; Nagaraju Mekala Subject: Re: Allo

Re: Allocating some Loop allocno in memory

2015-01-12 Thread Richard Biener
On Sun, Jan 11, 2015 at 4:45 PM, Ajit Kumar Agarwal wrote: > > > -Original Message- > From: Richard Biener [mailto:richard.guent...@gmail.com] > Sent: Sunday, January 11, 2015 8:05 PM > To: Ajit Kumar Agarwal; vmaka...@redhat.com; l...@redhat.com; gcc@gcc.gnu.org > Cc: Vinod Kathail; Shail