From 9a020607cbe2861e39f1bc288044aa1f45355b07 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 17 Sep 2008 00:49:38 +0200 Subject: [PATCH] isl_set_dump: dump more information --- isl_map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/isl_map.c b/isl_map.c index de92523..10aac0b 100644 --- a/isl_map.c +++ b/isl_map.c @@ -1545,7 +1545,8 @@ void isl_set_dump(struct isl_set *set, FILE *out, int indent) } fprintf(out, "%*s", indent, ""); - fprintf(out, "ref: %d, n: %d\n", set->ref, set->n); + fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n", + set->ref, set->n, set->nparam, set->dim, set->flags); for (i = 0; i < set->n; ++i) { fprintf(out, "%*s", indent, ""); fprintf(out, "basic set %d:\n", i); -- 2.7.4