Re: Martin Liska appointed GCC IPA Reviewer

2020-04-14 Thread Martin Liška
On 4/13/20 9:54 PM, David Edelsohn wrote: I am pleased to announce that the GCC Steering Committee has appointed Martin Liska as IPA Reviewer. Please join me in congratulating Martin on his new role. Martin, please update your listing in the MAINTAINERS file. Happy hacking! Davi

Re: GNU Tools Cauldron 2020 update

2020-04-14 Thread Olivier Hainque
Dear all, > On 19 Mar 2020, at 15:58, Olivier Hainque wrote: > > Dear all, > > With the current evolution of the COVID-19 crisis worldwide, we are > unfortunately not in a position to maintain the organization of this > year’s GNU Tools Cauldron as originally planned in June. > > We are workin

Vectorization of loop which operate on local arrays

2020-04-14 Thread Shubham Narlawar via Gcc
Hello, I am working on gcc-4.9.4 and encountered different results of loop vectorization on array arr0, arr1 and arr2. Testcase - int main() { int i; for (i=0; i<64; i++) { arr2[i]=(arr1[i]|arr0[i]); } } Using -O2 -ftree-vectorize, Above loop is vectorized if arr

Re: Not usable email content encoding

2020-04-14 Thread Christopher Faylor
On Mon, Apr 13, 2020 at 10:53:06PM +, Michael Matz wrote: >On Mon, 13 Apr 2020, Christopher Faylor wrote: >>On Wed, Apr 08, 2020 at 04:15:27PM -0500, Segher Boessenkool wrote: >>>On Wed, Apr 08, 2020 at 01:50:51PM +, Michael Matz wrote: On Wed, 8 Apr 2020, Mark Wielaard wrote: >Earl

Re: Not usable email content encoding

2020-04-14 Thread Maciej W. Rozycki via Gcc
On Tue, 14 Apr 2020, Christopher Faylor wrote: > >I think that means that dmarc_moderation_action: "Munge From" can > >simply be switched off then (at least I don't see which other headers > >e.g. gcc@ is rewriting that would cause DMARC to scream; and if there > >are any, then it would be better

Section pragmas

2020-04-14 Thread Yousef via Gcc
Hi I am very shocked to find out that GCC GNU does not support section pragams. I have to declare an attribute for every single variable and function for hundreds of files where I can just use few pragmas on other compilers. I do not understand why would GNU discourage the use of pragmas where th

Re: Not usable email content encoding

2020-04-14 Thread Christopher Faylor
On Tue, Apr 14, 2020 at 10:38:12PM +0100, Maciej W. Rozycki wrote: >Therefore I'd be happy to participate in testing a solution for >disabling `From' munging for `p=none' domains. I can't speak for fche but I have a limited amount of time for any computer activity right now. A pinched nerve in my

Re: Vectorization of loop which operate on local arrays

2020-04-14 Thread Richard Biener via Gcc
On Tue, Apr 14, 2020 at 4:39 PM Shubham Narlawar via Gcc wrote: > > Hello, > > I am working on gcc-4.9.4 and encountered different results of loop > vectorization on array arr0, arr1 and arr2. > > Testcase - > > int main() > { > int i; > for (i=0; i<64; i++) > { > arr2[i]=(