diff options
author | Richard Guenther <rguenther@suse.de> | 2012-06-22 12:29:33 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-06-22 12:29:33 +0000 |
commit | 62e0a1ed43184c59f3c5d0d30b7a573c7574c00f (patch) | |
tree | c3219bcca178f5d132ff02ba16435f89fac9c6c1 /gcc/tree-parloops.c | |
parent | d25df8825432c8589b42f2b12e078c7eb596e947 (diff) | |
download | gcc-62e0a1ed43184c59f3c5d0d30b7a573c7574c00f.zip gcc-62e0a1ed43184c59f3c5d0d30b7a573c7574c00f.tar.gz gcc-62e0a1ed43184c59f3c5d0d30b7a573c7574c00f.tar.bz2 |
[multiple changes]
2012-06-22 Richard Guenther <rguenther@suse.de>
Merge from graphite branch
2011-08-10 Sebastian Pop <sebpop@gmail.com>
* graphite-sese-to-poly.c (build_scop_drs): Fix memory leak.
2012-01-13 Tobias Grosser <tobias@grosser.es>
* tree-flow.h (parallelized_function_p): Declare.
* tree-parloops.c (parallelized_function_p): Export.
* graphite.c (graphite_transform_loops): Do not run graphite on
already parallel functions.
libgomp/
* testsuite/libgomp.graphite/force-parallel-1.c: Adjust.
* testsuite/libgomp.graphite/force-parallel-2.c: Likewise.
From-SVN: r188885
Diffstat (limited to 'gcc/tree-parloops.c')
-rw-r--r-- | gcc/tree-parloops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index e95bf4c..86036b4 100644 --- a/gcc/tree-parloops.c +++ b/gcc/tree-parloops.c @@ -1394,7 +1394,7 @@ static GTY(()) bitmap parallelized_functions; /* Returns true if FN was created by create_loop_fn. */ -static bool +bool parallelized_function_p (tree fn) { if (!parallelized_functions || !DECL_ARTIFICIAL (fn)) |