1//===-- AttributeHelper.td ---------------------------------*- tablegen -*-===//
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
8//===----------------------------------------------------------------------===//
10#ifndef LLZK_ATTRIBUTE_HELPER
11#define LLZK_ATTRIBUTE_HELPER
13include "mlir/IR/AttrTypeBase.td"
15// APInts that allows comparison involving different bitwidths.
16class APIntParameter<string desc = "">
17 : AttrOrTypeParameter<"::llvm::APInt", desc> {
18 let comparator = "::llvm::APInt::isSameValue($_lhs, $_rhs)";
21#endif // LLZK_ATTRIBUTE_HELPER