LLZK 0.1.0
Veridise's ZK Language IR
Loading...
Searching...
No Matches
Types.td
Go to the documentation of this file.
1//===-- Types.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_STRING_TYPES
11#define LLZK_STRING_TYPES
12
13include "llzk/Dialect/String/IR/Dialect.td"
14
15include "mlir/IR/AttrTypeBase.td"
16include "mlir/IR/BuiltinTypes.td"
17include "mlir/Interfaces/MemorySlotInterfaces.td"
18include "mlir/IR/BuiltinTypeInterfaces.td"
19
20def LLZK_String : TypeDef<StringDialect, "String", []> {
21 let mnemonic = "type";
22 let summary = "string type";
23}
24
25#endif // LLZK_STRING_TYPES