LLZK 2.1.1
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
TransformationPasses.td
Go to the documentation of this file.
1//===-- TransformationPasses.td ----------------------------*- tablegen -*-===//
2//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2026 Project LLZK
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLZK_POD_TRANSFORMATION_PASSES_TD
11#define LLZK_POD_TRANSFORMATION_PASSES_TD
12
13include "llzk/Pass/PassBase.td"
14
15def PodToScalarPass : LLZKPass<"llzk-pod-to-scalar"> {
16 let summary = "Replace PODs with scalar values";
17 let description = [{
18 Replace `pod.type` values with the proper number of scalar values
19 }];
20}
21
22#endif // LLZK_POD_TRANSFORMATION_PASSES_TD