Commit 3a961aea by Martin Liska Committed by Martin Liska

Add operator new/delete to cgraph_node::dump.

2019-08-06  Martin Liska  <mliska@suse.cz>

	* cgraph.c (cgraph_node::dump): Dump DECL_IS_OPERATOR_NEW_P
	and DECL_IS_OPERATOR_DELETE_P.

From-SVN: r274139
parent d81ab49d
2019-08-06 Martin Liska <mliska@suse.cz>
* cgraph.c (cgraph_node::dump): Dump DECL_IS_OPERATOR_NEW_P
and DECL_IS_OPERATOR_DELETE_P.
2019-08-06 Jakub Jelinek <jakub@redhat.com> 2019-08-06 Jakub Jelinek <jakub@redhat.com>
* tree.h (OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV): Rename to ... * tree.h (OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV): Rename to ...
......
...@@ -2080,6 +2080,11 @@ cgraph_node::dump (FILE *f) ...@@ -2080,6 +2080,11 @@ cgraph_node::dump (FILE *f)
fprintf (f, " optimize_size"); fprintf (f, " optimize_size");
if (parallelized_function) if (parallelized_function)
fprintf (f, " parallelized_function"); fprintf (f, " parallelized_function");
if (DECL_IS_OPERATOR_NEW_P (decl))
fprintf (f, " operator_new");
if (DECL_IS_OPERATOR_DELETE_P (decl))
fprintf (f, " operator_delete");
fprintf (f, "\n"); fprintf (f, "\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment