aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-04-29 15:02:16 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-04-29 15:02:16 +0000
commit3979649a7148086396248b93875ec953f0331a33 (patch)
tree3ac368329de198291a198c5ccbb1046dec702fdd
parent62fb101e69b1b1c99e3bf4951616eb3ce3015006 (diff)
downloadgcc-3979649a7148086396248b93875ec953f0331a33.zip
gcc-3979649a7148086396248b93875ec953f0331a33.tar.gz
gcc-3979649a7148086396248b93875ec953f0331a33.tar.bz2
Dump the return type of functions in gimple dumps
gcc/ * tree-cfg.c (dump_function_to_file): Dump the return type of functions, in a line to itself before the function body, mimicking the layout of a C function. gcc/testsuite/ * gcc.dg/tree-ssa/pr23401.c: Update the expected number of occurrences of "int" in the gimple dump to reflect that the return types of functions now show up in such dumps. * gcc.dg/tree-ssa/pr27810.c: Likewise. From-SVN: r209902
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog7
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/pr23401.c2
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/pr27810.c2
-rw-r--r--gcc/tree-cfg.c6
5 files changed, 21 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f22fe1d..c62e2a2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2014-04-29 David Malcolm <dmalcolm@redhat.com>
+
+ * tree-cfg.c (dump_function_to_file): Dump the return type of
+ functions, in a line to itself before the function body, mimicking
+ the layout of a C function.
+
2014-04-29 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/60971
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 689f4e8..e49afd5 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2014-04-29 David Malcolm <dmalcolm@redhat.com>
+
+ * gcc.dg/tree-ssa/pr23401.c: Update the expected number of
+ occurrences of "int" in the gimple dump to reflect that the return
+ types of functions now show up in such dumps.
+ * gcc.dg/tree-ssa/pr27810.c: Likewise.
+
2014-04-29 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/60971
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr23401.c b/gcc/testsuite/gcc.dg/tree-ssa/pr23401.c
index 1d30ac7..3940692 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/pr23401.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/pr23401.c
@@ -19,6 +19,6 @@ int ffff(int i)
/* We should not use extra temporaries apart from for i1 + i2. */
-/* { dg-final { scan-tree-dump-times "int" 5 "gimple" } } */
+/* { dg-final { scan-tree-dump-times "int" 6 "gimple" } } */
/* { dg-final { scan-tree-dump-times "int D\\\." 1 "gimple" } } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr27810.c b/gcc/testsuite/gcc.dg/tree-ssa/pr27810.c
index c7da3bd..6d0904b 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/pr27810.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/pr27810.c
@@ -13,6 +13,6 @@ int qqq (int a)
/* We should not use an extra temporary for the result of the
function call. */
-/* { dg-final { scan-tree-dump-times "int" 3 "gimple" } } */
+/* { dg-final { scan-tree-dump-times "int" 4 "gimple" } } */
/* { dg-final { scan-tree-dump-times "int D\\\." 1 "gimple" } } */
/* { dg-final { cleanup-tree-dump "gimple" } } */
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c
index 0fb2681..a5f09ea 100644
--- a/gcc/tree-cfg.c
+++ b/gcc/tree-cfg.c
@@ -7086,6 +7086,12 @@ dump_function_to_file (tree fndecl, FILE *file, int flags)
struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
current_function_decl = fndecl;
+
+ /* Print the return type of the function: */
+ print_generic_expr (file, TREE_TYPE (TREE_TYPE (fun->decl)),
+ dump_flags | TDF_SLIM);
+ fprintf (file, "\n");
+
fprintf (file, "%s %s(", function_name (fun), tmclone ? "[tm-clone] " : "");
arg = DECL_ARGUMENTS (fndecl);