Commit 8d18bd10 by Abderrazek Zaafrani Committed by Sebastian Pop

make debug comment more explicit

2016-01-28  Abderrazek Zaafrani  <a.zaafrani@samsung.com>

	* graphite-optimize-isl.c (optimize_isl): Print a different debug
	message when isl does not return a valid schedule.

From-SVN: r232935
parent 16bccd7a
2016-01-28 Abderrazek Zaafrani <a.zaafrani@samsung.com>
* graphite-optimize-isl.c (optimize_isl): Print a different debug
message when isl does not return a valid schedule.
2016-01-28 Sebastian Pop <s.pop@samsung.com> 2016-01-28 Sebastian Pop <s.pop@samsung.com>
* graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple): * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple):
......
...@@ -477,8 +477,15 @@ optimize_isl (scop_p scop) ...@@ -477,8 +477,15 @@ optimize_isl (scop_p scop)
if (!schedule || isl_ctx_last_error (scop->isl_context) == isl_error_quota) if (!schedule || isl_ctx_last_error (scop->isl_context) == isl_error_quota)
{ {
if (dump_file && dump_flags) if (dump_file && dump_flags)
fprintf (dump_file, "isl timed out --param max-isl-operations=%d\n", {
max_operations); if (!schedule)
fprintf (dump_file, "isl did not return any schedule.\n",
max_operations);
else
fprintf (dump_file, "isl timed out --param max-isl-operations=%d\n",
max_operations);
}
if (schedule) if (schedule)
isl_schedule_free (schedule); isl_schedule_free (schedule);
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment