Re: [PATCh] Fix a -Wnarrowing warning in Fortran FE

2017-07-25 Thread Thomas Koenig
Hi Jakub, I've noticed yesterday a -Wnarrowing warning in the Fortran FE that broke my build (old configure, these days we use -Wno-narrowing, so don't see that). We are storing the mask into unsigned int field, and 1 << 31 is negative. Fixed thusly, bootstrapped/regtested on x86_64-linux and i

[PATCh] Fix a -Wnarrowing warning in Fortran FE

2017-07-25 Thread Jakub Jelinek
Hi! I've noticed yesterday a -Wnarrowing warning in the Fortran FE that broke my build (old configure, these days we use -Wno-narrowing, so don't see that). We are storing the mask into unsigned int field, and 1 << 31 is negative. Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linu