//===- lib/Tools/Plugins/DialectPlugin.cpp - Load Dialect Plugins ---------===// // // 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 "mlir/Tools/Plugins/DialectPlugin.h" #include "llvm/Support/raw_ostream.h" #include <cstdint> usingnamespacemlir; llvm::Expected<DialectPlugin> DialectPlugin::load(const std::string &filename) { … }