21 lines · cpp
1//===-- RegisterOpenMPExtensions.cpp --------------------------------------===//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-exception6//7//===----------------------------------------------------------------------===//8//9// Registration for OpenMP extensions as applied to FIR dialect.10//11//===----------------------------------------------------------------------===//12 13#include "flang/Optimizer/OpenMP/Support/RegisterOpenMPExtensions.h"14 15namespace fir::omp {16void registerOpenMPExtensions(mlir::DialectRegistry ®istry) {17 registerAttrsExtensions(registry);18}19 20} // namespace fir::omp21