forked from OSchip/llvm-project
[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 <uday@polymagelabs.com> Differential Revision: https://reviews.llvm.org/D76583
This commit is contained in:
parent
0d0b90105f
commit
56e1c20bfd
|
@ -1,5 +1,5 @@
|
||||||
add_mlir_conversion_library(MLIRLoopToStandard
|
add_mlir_conversion_library(MLIRLoopToStandard
|
||||||
ConvertLoopToStandard.cpp
|
LoopToStandard.cpp
|
||||||
|
|
||||||
ADDITIONAL_HEADER_DIRS
|
ADDITIONAL_HEADER_DIRS
|
||||||
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/LoopToStandard
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/LoopToStandard
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//===- ConvertLoopToStandard.cpp - ControlFlow to CFG conversion ----------===//
|
//===- LoopToStandard.cpp - ControlFlow to CFG conversion -----------------===//
|
||||||
//
|
//
|
||||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||||
// See https://llvm.org/LICENSE.txt for license information.
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
@ -1,5 +1,5 @@
|
||||||
add_mlir_conversion_library(MLIRStandardToLLVM
|
add_mlir_conversion_library(MLIRStandardToLLVM
|
||||||
ConvertStandardToLLVM.cpp
|
StandardToLLVM.cpp
|
||||||
|
|
||||||
ADDITIONAL_HEADER_DIRS
|
ADDITIONAL_HEADER_DIRS
|
||||||
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/StandardToLLVM
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/StandardToLLVM
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//===- ConvertStandardToLLVM.cpp - Standard to LLVM dialect conversion-----===//
|
//===- StandardToLLVM.cpp - Standard to LLVM dialect conversion -----------===//
|
||||||
//
|
//
|
||||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||||
// See https://llvm.org/LICENSE.txt for license information.
|
// See https://llvm.org/LICENSE.txt for license information.
|
Loading…
Reference in New Issue