2020-02-25 23:11:52 +08:00
|
|
|
//===-- lib/Semantics/canonicalize-omp.h ------------------------*- C++ -*-===//
|
2019-08-23 01:34:15 +08:00
|
|
|
//
|
2019-12-21 04:52:07 +08:00
|
|
|
// 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
|
2019-08-23 01:34:15 +08:00
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-08-23 01:34:15 +08:00
|
|
|
|
|
|
|
#ifndef FORTRAN_SEMANTICS_CANONICALIZE_OMP_H_
|
|
|
|
#define FORTRAN_SEMANTICS_CANONICALIZE_OMP_H_
|
|
|
|
|
|
|
|
namespace Fortran::parser {
|
|
|
|
struct Program;
|
|
|
|
class Messages;
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::parser
|
2019-08-23 01:34:15 +08:00
|
|
|
|
|
|
|
namespace Fortran::semantics {
|
|
|
|
bool CanonicalizeOmp(parser::Messages &messages, parser::Program &program);
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
#endif // FORTRAN_SEMANTICS_CANONICALIZE_OMP_H_
|