]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
graphite-isl-ast-to-gimple.c (generate_isl_context): Add __isl_give to the declaration.
authorRoman Gareev <gareevroman@gmail.com>
Tue, 8 Jul 2014 13:51:26 +0000 (13:51 +0000)
committerRoman Gareev <romangareev@gcc.gnu.org>
Tue, 8 Jul 2014 13:51:26 +0000 (13:51 +0000)
gcc/
* graphite-isl-ast-to-gimple.c (generate_isl_context):
Add __isl_give to the declaration.
(generate_isl_schedule): Likewise.
(scop_to_isl_ast): Likewise.

From-SVN: r212361

gcc/ChangeLog
gcc/graphite-isl-ast-to-gimple.c

index 2ec9aae2b78e0e3aefc0791cfc5d695e15d163cc..b5ad7bd5a0659e6137c3df57208cf4d4f1c5a059 100644 (file)
@@ -1,3 +1,10 @@
+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.
index 8ba7b759ad4913c5d92ed27d9dc0b5f4a99a1e6a..2bd8250fd78de39ad37084cf9249a66fb4dc3aba 100644 (file)
@@ -67,7 +67,7 @@ print_isl_ast_node (FILE *file, __isl_keep isl_ast_node *node,
 
 /* 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));
@@ -77,7 +77,7 @@ generate_isl_context (scop_p scop)
 /* 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;
@@ -102,7 +102,7 @@ generate_isl_schedule (scop_p scop)
   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);