mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-31 15:31:11 +08:00
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
This commit is contained in:
parent
d81ab49d05
commit
3a961aea3b
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* tree.h (OMP_CLAUSE_LASTPRIVATE_TASKLOOP_IV): Rename to ...
|
||||
|
@ -2080,6 +2080,11 @@ cgraph_node::dump (FILE *f)
|
||||
fprintf (f, " optimize_size");
|
||||
if (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");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user