1*62828865SStephen Neuendorffer //===- RegionKindInterface.cpp - Region Kind Interfaces ---------*- C++ -*-===// 2*62828865SStephen Neuendorffer // 3*62828865SStephen Neuendorffer // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*62828865SStephen Neuendorffer // See https://llvm.org/LICENSE.txt for license information. 5*62828865SStephen Neuendorffer // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*62828865SStephen Neuendorffer // 7*62828865SStephen Neuendorffer //===----------------------------------------------------------------------===// 8*62828865SStephen Neuendorffer // 9*62828865SStephen Neuendorffer // This file contains the definitions of the region kind interfaces defined in 10*62828865SStephen Neuendorffer // `RegionKindInterface.td`. 11*62828865SStephen Neuendorffer // 12*62828865SStephen Neuendorffer //===----------------------------------------------------------------------===// 13*62828865SStephen Neuendorffer 14*62828865SStephen Neuendorffer #include "mlir/IR/RegionKindInterface.h" 15*62828865SStephen Neuendorffer 16*62828865SStephen Neuendorffer using namespace mlir; 17*62828865SStephen Neuendorffer 18*62828865SStephen Neuendorffer #include "mlir/IR/RegionKindInterface.cpp.inc" 19