From 0ba825679df27615521caeeed0edc1be2f81cdc0 Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Thu, 30 Sep 2010 21:19:58 +0000 Subject: [PATCH] Fix pretty printers. 2010-09-09 Sebastian Pop * graphite-poly.c (print_pbb_body): Add missing closing parenthesis. (print_scop_header): Removed. Inlined in the only call place... (print_scop): ... here. From-SVN: r164798 --- gcc/ChangeLog | 6 ++++++ gcc/ChangeLog.graphite | 6 ++++++ gcc/graphite-poly.c | 36 +++++++++++++++--------------------- 3 files changed, 27 insertions(+), 21 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8bb7675bb3ce..8ae720a4cf86 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-09-30 Sebastian Pop + + * graphite-poly.c (print_pbb_body): Add missing closing parenthesis. + (print_scop_header): Removed. Inlined in the only call place... + (print_scop): ... here. + 2010-09-30 Sebastian Pop * graphite-poly.h (lst_dewey_number): Use FOR_EACH_VEC_ELT. diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 6a98c8cb6c30..99d4204f5c82 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,9 @@ +2010-09-09 Sebastian Pop + + * graphite-poly.c (print_pbb_body): Add missing closing parenthesis. + (print_scop_header): Removed. Inlined in the only call place... + (print_scop): ... here. + 2010-09-09 Sebastian Pop * graphite-poly.h (lst_dewey_number): Use FOR_EACH_VEC_ELT. diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index 96a0a70496ba..46f197159b46 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -1249,13 +1249,16 @@ print_pbb_body (FILE *file, poly_bb_p pbb, int verbosity, fprintf (file, "# Body (\n"); if (!statement_body_provided) - { - if (verbosity > 0) - fprintf (file, "# Statement body is not provided\n"); + { + if (verbosity > 0) + fprintf (file, "# Statement body is not provided\n"); - fprintf (file, "0\n"); - return; - } + fprintf (file, "0\n"); + + if (verbosity > 1) + fprintf (file, "#)\n"); + return; + } if (verbosity > 0) fprintf (file, "# Statement body is provided\n"); @@ -1394,12 +1397,14 @@ print_scop_context (FILE *file, scop_p scop, int verbosity) fprintf (file, "# )\n"); } -/* Print to FILE the SCOP header: context, parameters, and statements - number. */ +/* Print to FILE the SCOP, at some VERBOSITY level. */ -static void -print_scop_header (FILE *file, scop_p scop, int verbosity) +void +print_scop (FILE *file, scop_p scop, int verbosity) { + int i; + poly_bb_p pbb; + fprintf (file, "SCoP 1\n#(\n"); fprintf (file, "# Language\nGimple\n"); openscop_print_scop_context (file, scop, verbosity); @@ -1409,17 +1414,6 @@ print_scop_header (FILE *file, scop_p scop, int verbosity) fprintf (file, "# Number of statements\n"); fprintf (file, "%d\n",VEC_length (poly_bb_p, SCOP_BBS (scop))); -} - -/* Print to FILE the SCOP, at some VERBOSITY level. */ - -void -print_scop (FILE *file, scop_p scop, int verbosity) -{ - int i; - poly_bb_p pbb; - - print_scop_header (file, scop, verbosity); FOR_EACH_VEC_ELT (poly_bb_p, SCOP_BBS (scop), i, pbb) print_pbb (file, pbb, verbosity); -- 2.43.5