+2019-02-01 Martin Jambor <mjambor@suse.cz>
+
+ * omp-grid.c (grid_target_follows_gridifiable_pattern): Guard two
+ missed optimization dump with dump_enabled_p.
+
2019-02-01 Richard Biener <rguenther@suse.de>
PR middle-end/88597
tree group_size = NULL;
if (!teams)
{
- dump_printf_loc (MSG_MISSED_OPTIMIZATION, tloc,
- GRID_MISSED_MSG_PREFIX "it does not have a sole teams "
- "construct in it.\n");
+ if (dump_enabled_p ())
+ dump_printf_loc (MSG_MISSED_OPTIMIZATION, tloc,
+ GRID_MISSED_MSG_PREFIX "it does not have a sole "
+ "teams construct in it.\n");
return false;
}
gomp_for *dist = dyn_cast <gomp_for *> (stmt);
if (!dist)
{
- dump_printf_loc (MSG_MISSED_OPTIMIZATION, tloc,
- GRID_MISSED_MSG_PREFIX "the teams construct does not "
- "have a single distribute construct in it.\n");
+ if (dump_enabled_p ())
+ dump_printf_loc (MSG_MISSED_OPTIMIZATION, tloc,
+ GRID_MISSED_MSG_PREFIX "the teams construct does not "
+ "have a single distribute construct in it.\n");
return false;
}