[flang][NFC] Rename RewriteLoop.cpp to ControlFlowConverter.cpp

RewriteLoop.cpp is containing more than just loop conversion. It will
soon contains the fir.select_type conversion as well. This patch
renames the file so it is in line with the pass name.

Reviewed By: jeanPerier

Differential Revision: https://reviews.llvm.org/D137773
This commit is contained in:
Valentin Clement 2022-11-10 15:01:38 +01:00
parent e1b88c8a09
commit 4299ff548e
No known key found for this signature in database
GPG Key ID: 086D54783C928776
2 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ add_flang_library(FIRTransforms
AffineDemotion.cpp
AnnotateConstant.cpp
CharacterConversion.cpp
ControlFlowConverter.cpp
ArrayValueCopy.cpp
ExternalNameConversion.cpp
MemoryAllocation.cpp
MemRefDataFlowOpt.cpp
RewriteLoop.cpp
SimplifyRegionLite.cpp
AlgebraicSimplification.cpp
SimplifyIntrinsics.cpp

View File

@ -1,4 +1,4 @@
//===-- RewriteLoop.cpp ---------------------------------------------------===//
//===-- ControlFlowConverter.cpp ------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.