Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-25 Thread Richard Biener via Gcc-patches
On Mon, May 24, 2021 at 10:27 AM Martin Liška wrote: > > On 5/21/21 2:39 PM, Marco Elver wrote: > > On Fri, May 21, 2021 at 10:50AM +0200, Martin Liška wrote: > >> On 5/20/21 12:55 PM, Marco Elver wrote: > >>> I think this came up with other no_sanitize [1] based on what I had > >>> written to you

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-24 Thread Marco Elver via Gcc-patches
On Mon, 24 May 2021 at 10:03, Martin Liška wrote: > On 5/21/21 2:39 PM, Marco Elver wrote: > > On Fri, May 21, 2021 at 10:50AM +0200, Martin Liška wrote: > >> On 5/20/21 12:55 PM, Marco Elver wrote: > >>> I think this came up with other no_sanitize [1] based on what I had > >>> written to you last

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-24 Thread Martin Liška
On 5/21/21 2:39 PM, Marco Elver wrote: On Fri, May 21, 2021 at 10:50AM +0200, Martin Liška wrote: On 5/20/21 12:55 PM, Marco Elver wrote: I think this came up with other no_sanitize [1] based on what I had written to you last year [2]. [1]https://gcc.gnu.org/pipermail/gcc-patches/2020-June/547

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-21 Thread Marco Elver via Gcc-patches
On Fri, May 21, 2021 at 10:50AM +0200, Martin Liška wrote: > On 5/20/21 12:55 PM, Marco Elver wrote: > > I think this came up with other no_sanitize [1] based on what I had > > written to you last year [2]. > > > > [1]https://gcc.gnu.org/pipermail/gcc-patches/2020-June/547618.html > > [2]https://l

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-21 Thread Martin Liška
On 5/20/21 12:55 PM, Marco Elver wrote: I think this came up with other no_sanitize [1] based on what I had written to you last year [2]. [1]https://gcc.gnu.org/pipermail/gcc-patches/2020-June/547618.html [2]https://lore.kernel.org/lkml/canpmjnnrz5ovkb6pe7k6gjfogbht_zhypkng9ad+kjndzk7...@mail.gm

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-20 Thread Marco Elver via Gcc-patches
On Thu, 20 May 2021 at 11:08, Martin Liška wrote: > On 5/20/21 10:45 AM, Marco Elver wrote: > > On Thu, 20 May 2021 at 10:33, Martin Liška wrote: > >> Hello. > >> > >> The patch implements one missing attribute which can be used for > >> per-function > >> disabling of coverage sanitization. > >>

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-20 Thread Martin Liška
On 5/20/21 10:45 AM, Marco Elver wrote: On Thu, 20 May 2021 at 10:33, Martin Liška wrote: Hello. The patch implements one missing attribute which can be used for per-function disabling of coverage sanitization. Patch can bootstrap on x86_64-linux-gnu and survives regression tests. Thanks fo

Re: [PATCH] Add no_sanitize_coverage attribute.

2021-05-20 Thread Marco Elver via Gcc-patches
On Thu, 20 May 2021 at 10:33, Martin Liška wrote: > Hello. > > The patch implements one missing attribute which can be used for per-function > disabling of coverage sanitization. > > Patch can bootstrap on x86_64-linux-gnu and survives regression tests. Thanks for implementing this so quickly. On