1//===-- InlineIncludesPass.td ------------------------------*- tablegen -*-===//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
8//===----------------------------------------------------------------------===//
10#ifndef LLZK_INCLUDE_INLINE_PASS_TD
11#define LLZK_INCLUDE_INLINE_PASS_TD
13include "llzk/Pass/PassBase.td"
15def InlineIncludesPass : LLZKPass<"llzk-inline-includes"> {
16 let summary = "Replace all IncludeOp with contents of the referenced file.";
17 let constructor = "llzk::include::createInlineIncludesPass()";
20#endif // LLZK_INCLUDE_INLINE_PASS_TD