13ad841b2Smrg /* Expansion pass for OMP directives. Outlines regions of certain OMP 23ad841b2Smrg directives to separate functions, converts others into explicit calls to the 33ad841b2Smrg runtime library (libgomp) and so forth 43ad841b2Smrg 5*4c3eb207Smrg Copyright (C) 2005-2020 Free Software Foundation, Inc. 63ad841b2Smrg 73ad841b2Smrg This file is part of GCC. 83ad841b2Smrg 93ad841b2Smrg GCC is free software; you can redistribute it and/or modify it under 103ad841b2Smrg the terms of the GNU General Public License as published by the Free 113ad841b2Smrg Software Foundation; either version 3, or (at your option) any later 123ad841b2Smrg version. 133ad841b2Smrg 143ad841b2Smrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY 153ad841b2Smrg WARRANTY; without even the implied warranty of MERCHANTABILITY or 163ad841b2Smrg FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 173ad841b2Smrg for more details. 183ad841b2Smrg 193ad841b2Smrg You should have received a copy of the GNU General Public License 203ad841b2Smrg along with GCC; see the file COPYING3. If not see 213ad841b2Smrg <http://www.gnu.org/licenses/>. */ 223ad841b2Smrg 233ad841b2Smrg #ifndef GCC_OMP_EXPAND_H 243ad841b2Smrg #define GCC_OMP_EXPAND_H 253ad841b2Smrg 263ad841b2Smrg struct omp_region; 273ad841b2Smrg extern void omp_expand_local (basic_block head); 283ad841b2Smrg extern void omp_free_regions (void); 293ad841b2Smrg extern bool omp_make_gimple_edges (basic_block bb, struct omp_region **region, 303ad841b2Smrg int *region_idx); 313ad841b2Smrg 323ad841b2Smrg #endif /* GCC_OMP_EXPAND_H */ 33