From baab3328f379cf889f8b3a7c32bc8c9787fe5c55 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 9 Aug 2010 15:07:54 +0200 Subject: [PATCH] cloog_input_dump_cloog: fix typo that broke dump of input without iterator names Cc: Tobias Grosser Signed-off-by: Sven Verdoolaege --- source/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/input.c b/source/input.c index 9bd994c..2e175b5 100644 --- a/source/input.c +++ b/source/input.c @@ -138,7 +138,7 @@ void cloog_input_dump_cloog(FILE *file, CloogInput *input, CloogOptions *opt) } fprintf(file, "\n%d # Iterator name(s)\n\n", - ud->name[CLOOG_SCAT] ? 1 : 0); + ud->name[CLOOG_ITER] ? 1 : 0); if (ud->name[CLOOG_ITER]) for (i = 0; i < ud->n_name[CLOOG_ITER]; i++) -- 2.11.4.GIT