[Mlir-commits] [mlir] 2c9783c - Remove empty MLIRMemRefUtils library (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Thu Feb 9 19:15:50 PST 2023
Author: Mehdi Amini
Date: 2023-02-09T19:15:21-08:00
New Revision: 2c9783c6b97ba419f80a5bf1c0a1ffda36c9db8b
URL: https://github.com/llvm/llvm-project/commit/2c9783c6b97ba419f80a5bf1c0a1ffda36c9db8b
DIFF: https://github.com/llvm/llvm-project/commit/2c9783c6b97ba419f80a5bf1c0a1ffda36c9db8b.diff
LOG: Remove empty MLIRMemRefUtils library (NFC)
Added:
Modified:
mlir/lib/Dialect/MemRef/CMakeLists.txt
Removed:
mlir/lib/Dialect/MemRef/Utils/CMakeLists.txt
mlir/lib/Dialect/MemRef/Utils/MemRefUtils.cpp
################################################################################
diff --git a/mlir/lib/Dialect/MemRef/CMakeLists.txt b/mlir/lib/Dialect/MemRef/CMakeLists.txt
index c47e4c5495c17..660deb21479d2 100644
--- a/mlir/lib/Dialect/MemRef/CMakeLists.txt
+++ b/mlir/lib/Dialect/MemRef/CMakeLists.txt
@@ -1,4 +1,3 @@
add_subdirectory(IR)
add_subdirectory(TransformOps)
add_subdirectory(Transforms)
-add_subdirectory(Utils)
diff --git a/mlir/lib/Dialect/MemRef/Utils/CMakeLists.txt b/mlir/lib/Dialect/MemRef/Utils/CMakeLists.txt
deleted file mode 100644
index 7708872174903..0000000000000
--- a/mlir/lib/Dialect/MemRef/Utils/CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-add_mlir_dialect_library(MLIRMemRefUtils
- MemRefUtils.cpp
-
- ADDITIONAL_HEADER_DIRS
- ${PROJECT_SOURCE_DIR}/inlude/mlir/Dialect/MemRefDialect
-)
-
diff --git a/mlir/lib/Dialect/MemRef/Utils/MemRefUtils.cpp b/mlir/lib/Dialect/MemRef/Utils/MemRefUtils.cpp
deleted file mode 100644
index 3fa3bab2f5ce8..0000000000000
--- a/mlir/lib/Dialect/MemRef/Utils/MemRefUtils.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-//===- MemRefUtils.cpp - Utilities to support the MemRef dialect ----------===//
-//
-// 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
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements utilities for the MemRef dialect.
-//
-//===----------------------------------------------------------------------===//
-
-#include "mlir/Dialect/MemRef/Utils/MemRefUtils.h"
More information about the Mlir-commits
mailing list