Commit 2b9f69fd by Tom de Vries Committed by Tom de Vries

Test for flag_parallelize_loops > 1

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

	* builtins.def (DEF_GOMP_BUILTIN): Test
	'flag_tree_parallelize_loops > 1' instead of
	'flag_tree_parallelize_loops'.  Test flag_cilkplus.

From-SVN: r224745
parent f3c676e1
2015-06-22 Tom de Vries <tom@codesourcery.com> 2015-06-22 Tom de Vries <tom@codesourcery.com>
* builtins.def (DEF_GOMP_BUILTIN): Test
'flag_tree_parallelize_loops > 1' instead of
'flag_tree_parallelize_loops'. Test flag_cilkplus.
2015-06-22 Tom de Vries <tom@codesourcery.com>
* dominance.c (calculate_dominance_info): Verify dominators if * dominance.c (calculate_dominance_info): Verify dominators if
early-out. early-out.
......
...@@ -182,7 +182,9 @@ along with GCC; see the file COPYING3. If not see ...@@ -182,7 +182,9 @@ along with GCC; see the file COPYING3. If not see
#define DEF_GOMP_BUILTIN(ENUM, NAME, TYPE, ATTRS) \ #define DEF_GOMP_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
DEF_BUILTIN (ENUM, "__builtin_" NAME, BUILT_IN_NORMAL, TYPE, TYPE, \ DEF_BUILTIN (ENUM, "__builtin_" NAME, BUILT_IN_NORMAL, TYPE, TYPE, \
false, true, true, ATTRS, false, \ false, true, true, ATTRS, false, \
(flag_openmp || flag_tree_parallelize_loops \ (flag_openmp \
|| flag_tree_parallelize_loops > 1 \
|| flag_cilkplus \
|| flag_offload_abi != OFFLOAD_ABI_UNSET)) || flag_offload_abi != OFFLOAD_ABI_UNSET))
/* Builtin used by implementation of Cilk Plus. Most of these are decomposed /* Builtin used by implementation of Cilk Plus. Most of these are decomposed
......
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