+2014-07-08 Roman Gareev <gareevroman@gmail.com>
+
+ * graphite-isl-ast-to-gimple.c (generate_isl_context):
+ Add __isl_give to the declaration.
+ (generate_isl_schedule): Likewise.
+ (scop_to_isl_ast): Likewise.
+
2014-07-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.c (cortexa5_extra_costs): New table.
/* Generates a build, which specifies the constraints on the parameters. */
-static isl_ast_build *
+static __isl_give isl_ast_build *
generate_isl_context (scop_p scop)
{
isl_set *context_isl = isl_set_params (isl_set_copy (scop->context));
/* Generates a schedule, which specifies an order used to
visit elements in a domain. */
-static isl_union_map *
+static __isl_give isl_union_map *
generate_isl_schedule (scop_p scop)
{
int i;
return schedule_isl;
}
-static isl_ast_node *
+static __isl_give isl_ast_node *
scop_to_isl_ast (scop_p scop)
{
isl_union_map *schedule_isl = generate_isl_schedule (scop);