LLZK 0.1.0
Veridise's ZK Language IR
Loading...
Searching...
No Matches
Dialect.td
Go to the documentation of this file.
1//===-- Dialect.td -----------------------------------------*- tablegen -*-===//
2//
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
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLZK_POLYMORPHIC_DIALECT
11#define LLZK_POLYMORPHIC_DIALECT
12
13include "mlir/IR/DialectBase.td"
14
15def PolymorphicDialect : Dialect {
16 let name = "poly";
17 let summary =
18 "LLZK types and operations to support templated/parameterized structs.";
19
20 let cppNamespace = "::llzk::polymorphic";
21
22 let useDefaultTypePrinterParser = true;
23}
24
25#endif // LLZK_POLYMORPHIC_DIALECT