Re: Where Are Release Signatures Located?

2017-08-12 Thread Richard Biener
On August 11, 2017 6:23:01 PM GMT+02:00, R0b0t1 wrote: >I have checked a few of the mirrors listed on >https://gcc.gnu.org/mirrors.html. That page lists a few keys that >releases might be signed by, but on all of the mirrors I checked I do >not actually see any signed files. What am I missing? On

Re: [PATCH] Write dependency information (-M*) even if there are errors

2017-08-12 Thread Boris Kolpackov
Joseph Myers writes: > I suppose a question for the present proposal would be making sure any > dependencies generated in this case do not include dependencies on files > that don't exist (so #include "some-misspelling.h" doesn't create any sort > of dependency on such a header). Good point.

Re: [PATCH] Write dependency information (-M*) even if there are errors

2017-08-12 Thread Boris Kolpackov
Segher Boessenkool writes: > Patches should go to gcc-patches. Ok, will keep in mind for future (seeing that we have a discussion already it probably doesn't make sense to move this patch). > Two spaces after a full stop (all three times). Fixed, new revision included. Thanks, Boris Index:

Re: [PATCH] Write dependency information (-M*) even if there are errors

2017-08-12 Thread Segher Boessenkool
Hi Boris, On Sat, Aug 12, 2017 at 05:53:44PM +0200, Boris Kolpackov wrote: > Segher Boessenkool writes: > > > Patches should go to gcc-patches. > > Ok, will keep in mind for future (seeing that we have a discussion > already it probably doesn't make sense to move this patch). Please do move it

Optimization breaks inline asm code w/ptrs

2017-08-12 Thread David Wohlferd
Environment: gcc 6.1 compiling for 64bit i386 optimizations: -O2 Consider this simple bit of code (from https://stackoverflow.com/a/45656087/2189500): #include int getStringLength(const char *pStr){ int len; __asm__ ( "repne scasb\n\t" "not %%ecx\n\t" "dec

Re: Optimization breaks inline asm code w/ptrs

2017-08-12 Thread Andrew Pinski
On Sat, Aug 12, 2017 at 10:08 PM, Andrew Pinski wrote: > On Sat, Aug 12, 2017 at 9:21 PM, David Wohlferd > wrote: >> Environment: >> gcc 6.1 >> compiling for 64bit i386 >> optimizations: -O2 >> >> Consider this simple bit of code (from >> https://stackoverflow.com/a/45656087/2189500): >> >> #inc

Re: Optimization breaks inline asm code w/ptrs

2017-08-12 Thread Andrew Pinski
On Sat, Aug 12, 2017 at 9:21 PM, David Wohlferd wrote: > Environment: > gcc 6.1 > compiling for 64bit i386 > optimizations: -O2 > > Consider this simple bit of code (from > https://stackoverflow.com/a/45656087/2189500): > > #include > > int getStringLength(const char *pStr){ > > int len; > >