24 lines
810 B
C++
24 lines
810 B
C++
//===-- lib/Semantics/rewrite-directives.h ----------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef FORTRAN_SEMANTICS_REWRITE_DIRECTIVES_H_
|
|
#define FORTRAN_SEMANTICS_REWRITE_DIRECTIVES_H_
|
|
|
|
namespace Fortran::parser {
|
|
struct Program;
|
|
} // namespace Fortran::parser
|
|
|
|
namespace Fortran::semantics {
|
|
class SemanticsContext;
|
|
} // namespace Fortran::semantics
|
|
|
|
namespace Fortran::semantics {
|
|
bool RewriteOmpParts(SemanticsContext &, parser::Program &);
|
|
} // namespace Fortran::semantics
|
|
|
|
#endif // FORTRAN_SEMANTICS_REWRITE_DIRECTIVES_H_
|