LLZK 0.1.0
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
Ops.cpp
Go to the documentation of this file.
1//===-- Ops.cpp - LLZK operation implementations ----------------*- 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
12
13// TableGen'd implementation files
14#define GET_OP_CLASSES
16
17using namespace mlir;
18
19namespace llzk {
20
21//===------------------------------------------------------------------===//
22// NonDetOp
23//===------------------------------------------------------------------===//
24
25void NonDetOp::getAsmResultNames(OpAsmSetValueNameFn setNameFn) {
26 setNameFn(getResult(), "nondet");
27}
28
29} // namespace llzk
void getAsmResultNames(::mlir::OpAsmSetValueNameFn setNameFn)
Definition Ops.cpp:25