Skip to content

Commit 56e1c20

Browse files
committed
[MLIR][NFC] rename ConvertStandardToLLVM, ConvertLoopToStandard to drop Convert prefix
This is in line with the convention agreed on https://llvm.discourse.group/t/rfc-canonical-file-paths-to-dialects/621 Signed-off-by: Uday Bondhugula <[email protected]> Differential Revision: https://reviews.llvm.org/D76583
1 parent 0d0b901 commit 56e1c20

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

mlir/lib/Conversion/LoopToStandard/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
add_mlir_conversion_library(MLIRLoopToStandard
2-
ConvertLoopToStandard.cpp
2+
LoopToStandard.cpp
33

44
ADDITIONAL_HEADER_DIRS
55
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/LoopToStandard

mlir/lib/Conversion/LoopToStandard/ConvertLoopToStandard.cpp renamed to mlir/lib/Conversion/LoopToStandard/LoopToStandard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ConvertLoopToStandard.cpp - ControlFlow to CFG conversion ----------===//
1+
//===- LoopToStandard.cpp - ControlFlow to CFG conversion -----------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

mlir/lib/Conversion/StandardToLLVM/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
add_mlir_conversion_library(MLIRStandardToLLVM
2-
ConvertStandardToLLVM.cpp
2+
StandardToLLVM.cpp
33

44
ADDITIONAL_HEADER_DIRS
55
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/StandardToLLVM

mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp renamed to mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===- ConvertStandardToLLVM.cpp - Standard to LLVM dialect conversion-----===//
1+
//===- StandardToLLVM.cpp - Standard to LLVM dialect conversion -----------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

0 commit comments

Comments
 (0)