From 62a27a919834430c638ab9c4e8e1e7dda5375e78 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 28 Apr 2010 16:26:01 +0200 Subject: [PATCH] isl_map_read: fix typo --- isl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_input.c b/isl_input.c index 9d9788f0..01580f47 100644 --- a/isl_input.c +++ b/isl_input.c @@ -1312,7 +1312,7 @@ static struct isl_obj obj_read(struct isl_stream *s, int nparam) } isl_token_free(tok); tok = isl_stream_next_token(s); - } if (nparam > 0) + } else if (nparam > 0) bmap = isl_basic_map_add(bmap, isl_dim_param, nparam); if (!tok || tok->type != '{') { isl_stream_error(s, tok, "expecting '{'"); -- 2.11.4.GIT