//===- TestBuiltinAttributeInterfaces.cpp ---------------------------------===// // // 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 "TestAttributes.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/Pass/Pass.h" #include "llvm/ADT/TypeSwitch.h" #include "llvm/Support/FormatVariadic.h" usingnamespacemlir; usingnamespacetest; // Helper to print one scalar value, force int8_t to print as integer instead of // char. template <typename T> static void printOneElement(InFlightDiagnostic &os, T value) { … } namespace { struct TestElementsAttrInterface : public PassWrapper<TestElementsAttrInterface, OperationPass<ModuleOp>> { … }; } // namespace namespace mlir { namespace test { void registerTestBuiltinAttributeInterfaces() { … } } // namespace test } // namespace mlir