Re: [PATCH] asan: fix RTX emission for ilp32

2020-06-11 Thread Martin Liška
On 6/11/20 10:50 AM, Jakub Jelinek wrote: On Thu, Jun 11, 2020 at 10:12:14AM +0200, Martin Liška wrote: gcc/ChangeLog: PR sanitizer/95634 * asan.c (asan_emit_stack_protection): Fix emission for ilp32 by using Pmode instead of ptr_mode. --- gcc/asan.c | 4 ++-- 1 file

Re: [PATCH] asan: fix RTX emission for ilp32

2020-06-11 Thread Jakub Jelinek via Gcc-patches
On Thu, Jun 11, 2020 at 10:12:14AM +0200, Martin Liška wrote: > gcc/ChangeLog: > > PR sanitizer/95634 > * asan.c (asan_emit_stack_protection): Fix emission for ilp32 > by using Pmode instead of ptr_mode. > --- > gcc/asan.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions

[PATCH] asan: fix RTX emission for ilp32

2020-06-11 Thread Martin Liška
Hello. There's a patch for ilp32 where we should use Pmode instead of ptr_mode. Patch can bootstrap on x86_64-linux-gnu and survives regression tests. Ready to be installed? Thanks, Martin gcc/ChangeLog: PR sanitizer/95634 * asan.c (asan_emit_stack_protection): Fix emission fo