1 //===-- OpenMP.cpp -- Open MP directive lowering --------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "flang/Lower/OpenMP.h"
10 #include "flang/Lower/AbstractConverter.h"
11 #include "flang/Lower/PFTBuilder.h"
12 #include "flang/Parser/parse-tree.h"
13 
14 #define TODO() llvm_unreachable("not yet implemented")
15 
16 void Fortran::lower::genOpenMPConstruct(
17     Fortran::lower::AbstractConverter &, Fortran::lower::pft::Evaluation &,
18     const Fortran::parser::OpenMPConstruct &) {
19   TODO();
20 }
21 
22 void Fortran::lower::genOpenMPEndLoop(
23     Fortran::lower::AbstractConverter &, Fortran::lower::pft::Evaluation &,
24     const Fortran::parser::OmpEndLoopDirective &) {
25   TODO();
26 }
27