Commit a6f4d493 by Tom de Vries Committed by Tom de Vries

Make create_parallel_loop return void

2015-11-11  Tom de Vries  <tom@codesourcery.com>

	* tree-parloops.c (create_parallel_loop): Return void.

From-SVN: r230189
parent d42ba2d2
2015-11-11 Tom de Vries <tom@codesourcery.com> 2015-11-11 Tom de Vries <tom@codesourcery.com>
* tree-parloops.c (create_parallel_loop): Return void.
2015-11-11 Tom de Vries <tom@codesourcery.com>
* tree-parloops.c (transform_to_exit_first_loop_alt): Insert new exit * tree-parloops.c (transform_to_exit_first_loop_alt): Insert new exit
block only when needed. block only when needed.
...@@ -1986,10 +1986,9 @@ transform_to_exit_first_loop (struct loop *loop, ...@@ -1986,10 +1986,9 @@ transform_to_exit_first_loop (struct loop *loop,
/* Create the parallel constructs for LOOP as described in gen_parallel_loop. /* Create the parallel constructs for LOOP as described in gen_parallel_loop.
LOOP_FN and DATA are the arguments of GIMPLE_OMP_PARALLEL. LOOP_FN and DATA are the arguments of GIMPLE_OMP_PARALLEL.
NEW_DATA is the variable that should be initialized from the argument NEW_DATA is the variable that should be initialized from the argument
of LOOP_FN. N_THREADS is the requested number of threads. Returns the of LOOP_FN. N_THREADS is the requested number of threads. */
basic block containing GIMPLE_OMP_PARALLEL tree. */
static basic_block static void
create_parallel_loop (struct loop *loop, tree loop_fn, tree data, create_parallel_loop (struct loop *loop, tree loop_fn, tree data,
tree new_data, unsigned n_threads, location_t loc) tree new_data, unsigned n_threads, location_t loc)
{ {
...@@ -2162,8 +2161,6 @@ create_parallel_loop (struct loop *loop, tree loop_fn, tree data, ...@@ -2162,8 +2161,6 @@ create_parallel_loop (struct loop *loop, tree loop_fn, tree data,
/* After the above dom info is hosed. Re-compute it. */ /* After the above dom info is hosed. Re-compute it. */
free_dominance_info (CDI_DOMINATORS); free_dominance_info (CDI_DOMINATORS);
calculate_dominance_info (CDI_DOMINATORS); calculate_dominance_info (CDI_DOMINATORS);
return paral_bb;
} }
/* Generates code to execute the iterations of LOOP in N_THREADS /* Generates code to execute the iterations of LOOP in N_THREADS
......
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