1 //===- MemRefToEmitCPass.h - A Pass to convert MemRef to EmitC ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 #ifndef MLIR_CONVERSION_MEMREFTOEMITC_MEMREFTOEMITCPASS_H 9 #define MLIR_CONVERSION_MEMREFTOEMITC_MEMREFTOEMITCPASS_H 10 11 #include <memory> 12 13 namespace mlir { 14 class Pass; 15 16 #define GEN_PASS_DECL_CONVERTMEMREFTOEMITC 17 #include "mlir/Conversion/Passes.h.inc" 18 } // namespace mlir 19 20 #endif // MLIR_CONVERSION_MEMREFTOEMITC_MEMREFTOEMITCPASS_H 21