1//===- PDLExtension.h - PDL extension for Transform dialect -----*- 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
9namespace mlir {
10class DialectRegistry;
11
12namespace transform {
13/// Registers the PDL extension of the Transform dialect in the given registry.
14void registerPDLExtension(DialectRegistry &dialectRegistry);
15} // namespace transform
16} // namespace mlir
17

source code of mlir/include/mlir/Dialect/Transform/PDLExtension/PDLExtension.h