summaryrefslogtreecommitdiff
path: root/gcc/builtins.def
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2015-01-08 16:41:13 +0100
committerThomas Schwinge <tschwinge@gcc.gnu.org>2015-01-08 16:41:13 +0100
commit45f46750a3513790573791c0eec6b600b42f2042 (patch)
tree534d8a2d3746af0c984f8502f409c0547d28f7a3 /gcc/builtins.def
parent4f929d9da16fca9bcde0d1077c15136e944c5c0d (diff)
downloadgcc-45f46750a3513790573791c0eec6b600b42f2042.tar.gz
Make sure that OMP builtins are available in offloading compilers.
gcc/ * builtins.def (DEF_GOMP_BUILTIN): Also consider flag_offload_abi for registering builtins. * config/i386/intelmic-mkoffload.c (prepare_target_image): Don't add -fopenmp to the argv_obstack used when invoking compile_for_target. From-SVN: r219346
Diffstat (limited to 'gcc/builtins.def')
-rw-r--r--gcc/builtins.def5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/builtins.def b/gcc/builtins.def
index 28b164673db..5a7ed10f550 100644
--- a/gcc/builtins.def
+++ b/gcc/builtins.def
@@ -148,11 +148,14 @@ along with GCC; see the file COPYING3. If not see
/* Builtin used by the implementation of GNU OpenMP. None of these are
actually implemented in the compiler; they're all in libgomp. */
+/* These builtins also need to be enabled in offloading compilers invoked from
+ mkoffload; for that purpose, we're checking the -foffload-abi flag here. */
#undef DEF_GOMP_BUILTIN
#define DEF_GOMP_BUILTIN(ENUM, NAME, TYPE, ATTRS) \
DEF_BUILTIN (ENUM, "__builtin_" NAME, BUILT_IN_NORMAL, TYPE, TYPE, \
false, true, true, ATTRS, false, \
- (flag_openmp || flag_tree_parallelize_loops))
+ (flag_openmp || flag_tree_parallelize_loops \
+ || flag_offload_abi != OFFLOAD_ABI_UNSET))
/* Builtin used by implementation of Cilk Plus. Most of these are decomposed
by the compiler but a few are implemented in libcilkrts. */