From 5f8da992f2030e0f65b621a7f13211f1eff98bd3 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 6 Aug 2020 20:34:30 -0700 Subject: [PATCH] Fix mlir-hlo CMakefiles after internal change PiperOrigin-RevId: 325366142 --- include/mlir-hlo/Dialect/mhlo/transforms/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mlir-hlo/Dialect/mhlo/transforms/CMakeLists.txt b/include/mlir-hlo/Dialect/mhlo/transforms/CMakeLists.txt index 6fbc530..6de6851 100644 --- a/include/mlir-hlo/Dialect/mhlo/transforms/CMakeLists.txt +++ b/include/mlir-hlo/Dialect/mhlo/transforms/CMakeLists.txt @@ -15,9 +15,9 @@ # set(LLVM_TARGET_DEFINITIONS mhlo_passes.td) -mlir_tablegen(mhlo_passes.h.inc -gen-pass-decls) +mlir_tablegen(mhlo_passes.h.inc -gen-pass-decls -name MHLO) add_public_tablegen_target(MLIRMhloPassIncGen) set(LLVM_TARGET_DEFINITIONS lmhlo_passes.td) -mlir_tablegen(lmhlo_passes.h.inc -gen-pass-decls) +mlir_tablegen(lmhlo_passes.h.inc -gen-pass-decls -name LMHLO) add_public_tablegen_target(MLIRLmhloPassIncGen)