From 921b70f015681f310611908d8f09e1d313b33680 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 25 Aug 2008 14:27:51 +0200 Subject: [PATCH] isl_map_dump: print flags --- isl_map.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/isl_map.c b/isl_map.c index 3c3b2e2..7550f17 100644 --- 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); -- 2.7.4