diff options
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index b974459..afc975e 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -63,7 +63,6 @@ along with GCC; see the file COPYING3. If not see #include "stringpool.h" #include "attribs.h" #include "asan.h" -#include "cilk.h" #include "tree-chkp.h" #include "rtl-chkp.h" #include "internal-fn.h" @@ -203,10 +202,6 @@ is_builtin_name (const char *name) return true; if (strncmp (name, "__atomic_", 9) == 0) return true; - if (flag_cilkplus - && (!strcmp (name, "__cilkrts_detach") - || !strcmp (name, "__cilkrts_pop_frame"))) - return true; return false; } @@ -7626,14 +7621,6 @@ expand_builtin (tree exp, rtx target, rtx subtarget, machine_mode mode, expand_builtin_set_thread_pointer (exp); return const0_rtx; - case BUILT_IN_CILK_DETACH: - expand_builtin_cilk_detach (exp); - return const0_rtx; - - case BUILT_IN_CILK_POP_FRAME: - expand_builtin_cilk_pop_frame (exp); - return const0_rtx; - case BUILT_IN_CHKP_INIT_PTR_BOUNDS: case BUILT_IN_CHKP_NULL_PTR_BOUNDS: case BUILT_IN_CHKP_COPY_PTR_BOUNDS: |