llvm/mlir/lib/Tools/Plugins/PassPlugin.cpp

//===- lib/Tools/Plugins/PassPlugin.cpp - Load Plugins for PR Passes ------===//
//
// 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/PassPlugin.h"
#include "llvm/Support/raw_ostream.h"

#include <cstdint>

usingnamespacemlir;

llvm::Expected<PassPlugin> PassPlugin::load(const std::string &filename) {}