asan: Fix up error recovery for too large frames [PR107317]
authorJakub Jelinek <jakub@redhat.com>
Thu, 24 Nov 2022 10:29:54 +0000 (11:29 +0100)
committerJakub Jelinek <jakub@redhat.com>
Thu, 24 Nov 2022 10:29:54 +0000 (11:29 +0100)
commitb6330a7685476fc30b8ae9bbf3fca1a9b0d4be95
tree138f2e04002ea9258936ceb760f83e8eb149f3c4
parent7f77aa6b2f04781faa78373add11538d276c8ae4
asan: Fix up error recovery for too large frames [PR107317]

asan_emit_stack_protection and functions it calls have various asserts that
verify sanity of the stack protection instrumentation.  But, that
verification can easily fail if we've diagnosed a frame offset overflow.
asan_emit_stack_protection just emits some extra code in the prologue,
if we've reported errors, we aren't producing assembly, so it doesn't
really matter if we don't include the protection code, compilation
is going to fail anyway.

2022-11-24  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/107317
* asan.cc: Include diagnostic-core.h.
(asan_emit_stack_protection): Return NULL early if seen_error ().

* gcc.dg/asan/pr107317.c: New test.
gcc/asan.cc
gcc/testsuite/gcc.dg/asan/pr107317.c [new file with mode: 0644]