isl_map_dump: print flags
authorSven Verdoolaege <skimo@kotnet.org>
Mon, 25 Aug 2008 12:27:51 +0000 (14:27 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Mon, 25 Aug 2008 12:27:51 +0000 (14:27 +0200)
isl_map.c

index 3c3b2e2..7550f17 100644 (file)
--- a/isl_map.c
+++ b/isl_map.c
@@ -1567,8 +1567,9 @@ void isl_map_dump(struct isl_ctx *ctx, struct isl_map *map, FILE *out,
        }
 
        fprintf(out, "%*s", indent, "");
-       fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d\n",
-                       map->ref, map->n, map->nparam, map->n_in, map->n_out);
+       fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, flags: %x\n",
+                       map->ref, map->n, map->nparam, map->n_in, map->n_out,
+                       map->flags);
        for (i = 0; i < map->n; ++i) {
                fprintf(out, "%*s", indent, "");
                fprintf(out, "basic map %d:\n", i);