diff options
Diffstat (limited to 'gcc/langhooks.cc')
-rw-r--r-- | gcc/langhooks.cc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/langhooks.cc b/gcc/langhooks.cc index 77d5a42..194701f 100644 --- a/gcc/langhooks.cc +++ b/gcc/langhooks.cc @@ -669,6 +669,32 @@ lhd_omp_deep_mapping (const gimple *, tree, unsigned HOST_WIDE_INT, tree, tree, { } +/* Look up an OpenMP "declare mapper" mapper. */ + +tree +lhd_omp_mapper_lookup (tree, tree) +{ + return NULL_TREE; +} + +/* Given the representation used by the front-end to contain a mapper + directive, return the statement for the directive itself. */ + +tree +lhd_omp_extract_mapper_directive (tree) +{ + return error_mark_node; +} + +/* Return a simplified form for OMP_ARRAY_SECTION argument, or + error_mark_node if impossible. */ + +tree +lhd_omp_map_array_section (location_t, tree) +{ + return error_mark_node; +} + /* Return true if DECL is a scalar variable (for the purpose of implicit firstprivatization & mapping). Only if alloc_ptr_ok are allocatables and pointers accepted. */ |