diff options
author | Marek Polacek <polacek@redhat.com> | 2024-01-16 15:49:46 -0500 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2024-01-16 17:05:09 -0500 |
commit | ac219d524ace47eea5bf5404b267e22950f44030 (patch) | |
tree | a69ed95a9cf6d83874625355c5d5ba0c77592273 /gcc/testsuite/g++.dg/cpp23 | |
parent | 6a6f338c1cbfc2585cd85358a83e601fb959445e (diff) | |
download | gcc-ac219d524ace47eea5bf5404b267e22950f44030.zip gcc-ac219d524ace47eea5bf5404b267e22950f44030.tar.gz gcc-ac219d524ace47eea5bf5404b267e22950f44030.tar.bz2 |
c++: fix ICE with xobj in destructor [PR113340]
Here we crash in maybe_retrofit_in_chrg on an invalid dtor
with explicit this. Such member functions do not get converted
to METHOD_TYPE. If a dtor gets parameters, we reset arg_types
to void_list_node in grokdeclarator. This results in m_r_in_c
receiving:
void <T8d> (void)
and crashing on
parms = DECL_CHAIN (DECL_ARGUMENTS (fn));
This patch avoids the ICE by resetting is_xobj_member_function after
emitting the error. Then m_r_in_c gets
void S::<T40b> (struct S *)
which does not cause a crash.
PR c++/113340
gcc/cp/ChangeLog:
* decl.cc (grokdeclarator) <case cdk_function>: Clear
is_xobj_member_function in case of an error.
gcc/testsuite/ChangeLog:
* g++.dg/cpp23/explicit-obj-diagnostics9.C: New test.
Diffstat (limited to 'gcc/testsuite/g++.dg/cpp23')
-rw-r--r-- | gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C b/gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C new file mode 100644 index 0000000..d420793 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C @@ -0,0 +1,6 @@ +// PR c++/113340 +// { dg-do compile { target c++23 } } + +struct S { + ~S(this S &) = default; // { dg-error "destructors may not have parameters" } +}; |