1*a45e58afSMatthias Springer //===- BufferViewFlowOpInterface.cpp - Buffer View Flow Analysis ----------===// 2*a45e58afSMatthias Springer // 3*a45e58afSMatthias Springer // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*a45e58afSMatthias Springer // See https://llvm.org/LICENSE.txt for license information. 5*a45e58afSMatthias Springer // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*a45e58afSMatthias Springer // 7*a45e58afSMatthias Springer //===----------------------------------------------------------------------===// 8*a45e58afSMatthias Springer 9*a45e58afSMatthias Springer #include "mlir/Dialect/Bufferization/IR/BufferViewFlowOpInterface.h" 10*a45e58afSMatthias Springer #include "mlir/Dialect/Bufferization/IR/Bufferization.h" 11*a45e58afSMatthias Springer 12*a45e58afSMatthias Springer namespace mlir { 13*a45e58afSMatthias Springer namespace bufferization { 14*a45e58afSMatthias Springer 15*a45e58afSMatthias Springer #include "mlir/Dialect/Bufferization/IR/BufferViewFlowOpInterface.cpp.inc" 16*a45e58afSMatthias Springer 17*a45e58afSMatthias Springer } // namespace bufferization 18*a45e58afSMatthias Springer } // namespace mlir 19