diff mbox series

c++: fix ICE with xobj in destructor [PR113340]

Message ID 20240116212813.999293-1-polacek@redhat.com
State New
Headers show
Series c++: fix ICE with xobj in destructor [PR113340] | expand

Commit Message

Marek Polacek Jan. 16, 2024, 9:28 p.m. UTC
Bootstrapped/regtested on x86_64-pc-linux-gnu, ok for trunk?

-- >8 --
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 avoid 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.
---
 gcc/cp/decl.cc                                         | 1 +
 gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C | 6 ++++++
 2 files changed, 7 insertions(+)
 create mode 100644 gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C


base-commit: 6a6f338c1cbfc2585cd85358a83e601fb959445e

Comments

Jason Merrill Jan. 16, 2024, 10:03 p.m. UTC | #1
On 1/16/24 16:28, Marek Polacek wrote:
> Bootstrapped/regtested on x86_64-pc-linux-gnu, ok for trunk?

OK.

> -- >8 --
> 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 avoid 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.
> ---
>   gcc/cp/decl.cc                                         | 1 +
>   gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C | 6 ++++++
>   2 files changed, 7 insertions(+)
>   create mode 100644 gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics9.C
> 
> diff --git a/gcc/cp/decl.cc b/gcc/cp/decl.cc
> index b10a72a87bf..2e5702971c4 100644
> --- a/gcc/cp/decl.cc
> +++ b/gcc/cp/decl.cc
> @@ -13743,6 +13743,7 @@ grokdeclarator (const cp_declarator *declarator,
>   			  "destructors may not have parameters");
>   		arg_types = void_list_node;
>   		parms = NULL_TREE;
> +		is_xobj_member_function = false;
>   	      }
>   
>   	    type = build_function_type (type, arg_types);
> 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 00000000000..d420793c1e1
> --- /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" }
> +};
> 
> base-commit: 6a6f338c1cbfc2585cd85358a83e601fb959445e
diff mbox series

Patch

diff --git a/gcc/cp/decl.cc b/gcc/cp/decl.cc
index b10a72a87bf..2e5702971c4 100644
--- a/gcc/cp/decl.cc
+++ b/gcc/cp/decl.cc
@@ -13743,6 +13743,7 @@  grokdeclarator (const cp_declarator *declarator,
 			  "destructors may not have parameters");
 		arg_types = void_list_node;
 		parms = NULL_TREE;
+		is_xobj_member_function = false;
 	      }
 
 	    type = build_function_type (type, arg_types);
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 00000000000..d420793c1e1
--- /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" }
+};