diff options
author | Marek Polacek <polacek@redhat.com> | 2024-07-11 15:57:43 -0400 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2024-07-18 10:39:25 -0400 |
commit | 1e60a6abfece40c7bf55d6ca0a439078d3f5159a (patch) | |
tree | 94dc6edcfcd2c461825b16bbdfa810d96313b496 /gcc/cp | |
parent | 5080840d8fbf25a321dd27543a1462d393d338bc (diff) | |
download | gcc-1e60a6abfece40c7bf55d6ca0a439078d3f5159a.zip gcc-1e60a6abfece40c7bf55d6ca0a439078d3f5159a.tar.gz gcc-1e60a6abfece40c7bf55d6ca0a439078d3f5159a.tar.bz2 |
eh: ICE with std::initializer_list and ASan [PR115865]
Here we ICE with -fsanitize=address on
std::initializer_list x = { 1, 2, 3 };
since r14-8681, which removed .ASAN_MARK calls on TREE_STATIC variables.
That means that lower_try_finally now instead of
try
{
.ASAN_MARK (UNPOISON, &C.0, 12);
x = {};
x._M_len = 3;
x._M_array = &C.0;
}
finally
{
.ASAN_MARK (POISON, &C.0, 12);
}
gets:
try
{
x = {};
x._M_len = 3;
x._M_array = &C.0;
}
finally
{
}
and we ICE on the empty finally in lower_try_finally_onedest while
getting get_eh_else.
PR c++/115865
gcc/ChangeLog:
* tree-eh.cc (get_eh_else): Check that the result of
gimple_seq_first_stmt is non-null.
gcc/testsuite/ChangeLog:
* g++.dg/asan/initlist2.C: New test.
Co-authored-by: Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'gcc/cp')
0 files changed, 0 insertions, 0 deletions