diff options
Diffstat (limited to 'gcc/tree-gimple.h')
-rw-r--r-- | gcc/tree-gimple.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/gcc/tree-gimple.h b/gcc/tree-gimple.h index ff1a6d2..9cba07f 100644 --- a/gcc/tree-gimple.h +++ b/gcc/tree-gimple.h @@ -109,21 +109,6 @@ enum gimplify_status { GS_ALL_DONE = 1 /* The expression is fully gimplified. */ }; -/* Type of parallel constructs. Used to decide what runtime function - to use for launching children threads and the gimplification - strategy. */ - -enum omp_parallel_type { - IS_NOT_PARALLEL = 0, - - /* Regular omp parallel */ - IS_PARALLEL, - - /* Combined parallel + workshare (parallel loop and parallel - sections). */ - IS_COMBINED_PARALLEL -}; - extern enum gimplify_status gimplify_expr (tree *, tree *, tree *, bool (*) (tree), fallback_t); extern void gimplify_type_sizes (tree, tree *); @@ -147,12 +132,11 @@ extern tree force_labels_r (tree *, int *, void *); extern enum gimplify_status gimplify_va_arg_expr (tree *, tree *, tree *); struct gimplify_omp_ctx; extern void omp_firstprivatize_variable (struct gimplify_omp_ctx *, tree); +extern tree gimple_boolify (tree); /* In omp-low.c. */ -extern tree find_omp_clause (tree, enum tree_code); extern void diagnose_omp_structured_block_errors (tree); extern tree omp_reduction_init (tree, tree); -enum omp_parallel_type determine_parallel_type (tree stmt); /* In tree-nested.c. */ extern void lower_nested_functions (tree); |