blob: 13dd43b60fded44da12e5ec4b22f1cf109ba26b1 [file] [log] [blame]
//===-- Lower/OpenMP.h -- lower Open MP directives --------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
//
//===----------------------------------------------------------------------===//
#ifndef FORTRAN_LOWER_OPENMP_H
#define FORTRAN_LOWER_OPENMP_H
namespace Fortran {
namespace parser {
struct OpenMPConstruct;
struct OmpEndLoopDirective;
} // namespace parser
namespace lower {
class AbstractConverter;
namespace pft {
struct Evaluation;
} // namespace pft
void genOpenMPConstruct(AbstractConverter &, pft::Evaluation &,
const parser::OpenMPConstruct &);
void genOpenMPEndLoop(AbstractConverter &, pft::Evaluation &,
const parser::OmpEndLoopDirective &);
} // namespace lower
} // namespace Fortran
#endif // FORTRAN_LOWER_OPENMP_H