From 494705be984aead1aec240ad76dc3ca5049b8d16 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 15 May 2015 16:19:50 +0200 Subject: [PATCH] iscc: typeof: recognize schedule objects Signed-off-by: Sven Verdoolaege --- iscc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iscc.c b/iscc.c index 29126bf..6fae2ff 100644 --- a/iscc.c +++ b/iscc.c @@ -1571,6 +1571,8 @@ static struct isl_obj type_of(struct isl_stream *s, type = "string"; if (obj.type == isl_obj_val) type = "value"; + if (obj.type == isl_obj_schedule) + type = "schedule"; free_obj(obj); obj.type = isl_obj_str; -- 2.11.4.GIT