//===- OpClass.cpp - Implementation of an Op Class ------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "OpClass.h" usingnamespacemlir; usingnamespacemlir::tblgen; //===----------------------------------------------------------------------===// // OpClass definitions //===----------------------------------------------------------------------===// OpClass::OpClass(StringRef name, std::string extraClassDeclaration, std::string extraClassDefinition) : … { … } void OpClass::finalize() { … }