This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Add pretty printer for ASAN_MARK and add a helper fn
On Tue, Dec 13, 2016 at 01:14:00PM +0100, Martin Liška wrote:
> On 12/13/2016 10:05 AM, Jakub Jelinek wrote:
> > Ok. But the builtins should be renamed too (incrementally),
> > BUILT_IN_ASAN_CLOBBER_N, "__asan_poison_stack_memory",
> > should really be BUILT_IN_ASAN_POISON_STACK_MEMORY etc.
> >
> > Jakub
>
> This is follow-up that I've just tested and reg-bootstrapped.
>
> Ready for trunk?
> Thanks,
> Martin
> >From 8fd18d8fde8f2e3a10812698c37d601c2a52aee7 Mon Sep 17 00:00:00 2001
> From: marxin <mliska@suse.cz>
> Date: Tue, 13 Dec 2016 10:19:48 +0100
> Subject: [PATCH 1/2] Rename BUILT_IN_ASAN_CLOBBER_N to
> BUILT_IN_ASAN_POISON_STACK_MEMORY.
>
> gcc/ChangeLog:
>
> 2016-12-13 Martin Liska <mliska@suse.cz>
>
> * asan.c (asan_expand_mark_ifn): Use renamed
> BUILT_IN_ASAN_{UN}CLOBBER_N to BUILT_IN_ASAN_{UN}POISON_STACK_MEMORY.
> * sanitizer.def: Likewise.
Ok, thanks.
Jakub