FLANG
Utils.h
1//===-- Optimizer/OpenMP/Utils.h --------------------------------*- C++ -*-===//
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// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef FORTRAN_OPTIMIZER_OPENMP_UTILS_H
14#define FORTRAN_OPTIMIZER_OPENMP_UTILS_H
15
16namespace flangomp {
17
18enum class DoConcurrentMappingKind {
19 DCMK_None,
20 DCMK_Host,
21 DCMK_Device
22};
23
24} // namespace flangomp
25
26#endif // FORTRAN_OPTIMIZER_OPENMP_UTILS_H