llvm/mlir/lib/Dialect/Arith/Transforms/BufferViewFlowOpInterfaceImpl.cpp

//===- BufferViewFlowOpInterfaceImpl.cpp - Buffer View Flow Analysis ------===//
//
// 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/Dialect/Arith/Transforms/BufferViewFlowOpInterfaceImpl.h"

#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/Bufferization/IR/BufferViewFlowOpInterface.h"

usingnamespacemlir;
usingnamespacemlir::bufferization;

namespace mlir {
namespace arith {
namespace {

struct SelectOpInterface
    : public BufferViewFlowOpInterface::ExternalModel<SelectOpInterface,
                                                      SelectOp> {};

} // namespace
} // namespace arith
} // namespace mlir

void arith::registerBufferViewFlowOpInterfaceExternalModels(
    DialectRegistry &registry) {}