LLZK 0.1.0
Veridise's ZK Language IR
Loading...
Searching...
No Matches
Dialect.cpp
Go to the documentation of this file.
1//===-- Dialect.cpp - Include dialect implementation ------------*- C++ -*-===//
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
13
14// TableGen'd implementation files
16
17//===------------------------------------------------------------------===//
18// IncludeDialect
19//===------------------------------------------------------------------===//
20
21auto llzk::include::IncludeDialect::initialize() -> void {
22 // clang-format off
23 addOperations<
24 #define GET_OP_LIST
26 >();
27 // clang-format on
28 addInterfaces<LLZKDialectBytecodeInterface<IncludeDialect>>();
29}