Skip to content

Commit 38f3381

Browse files
authored
Merge pull request #1161 from schweitzpgi/ch-name
[NFC] Make filename and class name consistent.
2 parents d905b22 + e4e4e82 commit 38f3381

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

flang/include/flang/Lower/EvExprDumper.h renamed to flang/include/flang/Lower/DumpEvaluateExpr.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
//===-- Lower/EvExprDumper.h ------------------------------------*- C++ -*-===//
1+
//===-- Lower/DumpEvaluateExpr.h --------------------------------*- C++ -*-===//
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.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef FORTRAN_LOWER_EVEXPRDUMPER_H
10-
#define FORTRAN_LOWER_EVEXPRDUMPER_H
9+
#ifndef FORTRAN_LOWER_DUMPEVALUATEEXPR_H
10+
#define FORTRAN_LOWER_DUMPEVALUATEEXPR_H
1111

1212
#include "flang/Evaluate/tools.h"
1313
#include "flang/Lower/Support/Utils.h"
@@ -209,4 +209,4 @@ LLVM_DUMP_METHOD void dumpEvExpr(
209209

210210
} // namespace Fortran::lower
211211

212-
#endif // FORTRAN_LOWER_EVEXPRDUMPER_H
212+
#endif // FORTRAN_LOWER_DUMPEVALUATEEXPR_H

flang/lib/Lower/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ add_flang_library(FortranLower
99
ConvertExpr.cpp
1010
ConvertType.cpp
1111
ConvertVariable.cpp
12-
EvExprDumper.cpp
12+
DumpEvaluateExpr.cpp
1313
HostAssociations.cpp
1414
IntrinsicCall.cpp
1515
IO.cpp

flang/lib/Lower/ConvertExpr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "flang/Lower/CallInterface.h"
2626
#include "flang/Lower/Coarray.h"
2727
#include "flang/Lower/ConvertType.h"
28-
#include "flang/Lower/EvExprDumper.h"
28+
#include "flang/Lower/DumpEvaluateExpr.h"
2929
#include "flang/Lower/IntrinsicCall.h"
3030
#include "flang/Lower/Mangler.h"
3131
#include "flang/Lower/Runtime.h"

flang/lib/Lower/EvExprDumper.cpp renamed to flang/lib/Lower/DumpEvaluateExpr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
//===-- Lower/EvExprDumper.cpp --------------------------------------------===//
1+
//===-- Lower/DumpEvaluateExpr.cpp ----------------------------------------===//
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.
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "flang/Lower/EvExprDumper.h"
9+
#include "flang/Lower/DumpEvaluateExpr.h"
1010
#include <iostream>
1111

1212
static constexpr char whiteSpacePadding[] =

0 commit comments

Comments
 (0)