diff options
author | Tom de Vries <tom@codesourcery.com> | 2015-09-29 05:41:09 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2015-09-29 05:41:09 +0000 |
commit | 2943f6f71601fa523f777d974f889efe8cf9b66b (patch) | |
tree | b5ad770c4a09c8dfb6d7779665305a89d49a52f2 | |
parent | 4c22199569f701692b3fe1116f2ff5b03c303931 (diff) | |
download | gcc-2943f6f71601fa523f777d974f889efe8cf9b66b.zip gcc-2943f6f71601fa523f777d974f889efe8cf9b66b.tar.gz gcc-2943f6f71601fa523f777d974f889efe8cf9b66b.tar.bz2 |
Dump function attributes
2015-09-29 Tom de Vries <tom@codesourcery.com>
* tree-cfg.c (dump_function_to_file): Dump function attributes.
From-SVN: r228229
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-cfg.c | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dc4a187..c614049 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-09-29 Tom de Vries <tom@codesourcery.com> + + * tree-cfg.c (dump_function_to_file): Dump function attributes. + 2015-09-29 Kaz Kojima <kkojima@gcc.gnu.org> PR target/67716 diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 712d8cc..e06ee28 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -7369,6 +7369,13 @@ dump_function_to_file (tree fndecl, FILE *file, int flags) } fprintf (file, ")\n"); + if (DECL_ATTRIBUTES (fndecl) != NULL_TREE) + { + fprintf (file, "[ "); + print_generic_expr (file, DECL_ATTRIBUTES (fndecl), dump_flags); + fprintf (file, "]\n"); + } + if (flags & TDF_VERBOSE) print_node (file, "", fndecl, 2); |