Skip to content

Commit 64ab330

Browse files
[flang] [LLVMify F18] Compiler module folders should have capitalised names (flang-compiler/f18#980)
This patch renames the modules in f18 to use a capital letter in the module name Signed-off-by: Caroline Concatto <caroline.concatto@arm.com> Original-commit: flang-compiler/f18@d2eb7a1 Reviewed-on: flang-compiler/f18#980
1 parent 456a61d commit 64ab330

File tree

655 files changed

+905
-905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

655 files changed

+905
-905
lines changed

flang/documentation/C++style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ or assignments should exist for a class, explicitly `=delete` all of them.
219219
There are many -- perhaps too many -- means of indirect addressing
220220
data in this project.
221221
Some of these are standard C++ language and library features,
222-
while others are local inventions in `lib/common`:
222+
while others are local inventions in `lib/Common`:
223223
* Bare pointers (`Foo *p`): these are obviously nullable, non-owning,
224224
undefined when uninitialized, shallowly copyable, reassignable, and often
225225
not the right abstraction to use in this project.

flang/documentation/ImplementingASemanticCheck.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ checking had already taken place.
111111
Most semantic checks for statements are implemented by walking the parse tree
112112
and performing analysis on the nodes they visit. My plan was to use this
113113
method. The infrastructure for walking the parse tree for statement semantic
114-
checking is implemented in the files `lib/semantics/semantics.cpp`.
114+
checking is implemented in the files `lib/Semantics/semantics.cpp`.
115115
Here's a fragment of the declaration of the framework's parse tree visitor from
116-
`lib/semantics/semantics.cpp`:
116+
`lib/Semantics/semantics.cpp`:
117117

118118
```C++
119119
// A parse tree visitor that calls Enter/Leave functions from each checker
@@ -136,7 +136,7 @@ Here's a fragment of the declaration of the framework's parse tree visitor from
136136
Since FUNCTION calls are a kind of expression, I was planning to base my
137137
implementation on the contents of `parser::Expr` nodes. I would need to define
138138
either an `Enter()` or `Leave()` function whose parameter was a `parser::Expr`
139-
node. Here's the declaration I put into `lib/semantics/check-do.h`:
139+
node. Here's the declaration I put into `lib/Semantics/check-do.h`:
140140
141141
```C++
142142
void Leave(const parser::Expr &);
@@ -148,12 +148,12 @@ arbitrarily chose to implement the `Leave()` function to visit the parse tree
148148
node.
149149

150150
Since my semantic check was focused on DO CONCURRENT statements, I added it to
151-
the file `lib/semantics/check-do.cpp` where most of the semantic checking for
151+
the file `lib/Semantics/check-do.cpp` where most of the semantic checking for
152152
DO statements already lived.
153153

154154
## Taking advantage of prior work
155155
When implementing a similar check for SUBROUTINE calls, I created a utility
156-
functions in `lib/semantics/semantics.cpp` to emit messages if
156+
functions in `lib/Semantics/semantics.cpp` to emit messages if
157157
a symbol corresponding to an active DO variable was being potentially modified:
158158

159159
```C++
@@ -176,15 +176,15 @@ functions. The second is needed to determine whether to call them.
176176
## Finding the source location
177177
The source code location information that I'd need for the error message must
178178
come from the parse tree. I looked in the file
179-
`include/flang/parser/parse-tree.h` and determined that a `struct Expr`
179+
`include/flang/Parser/parse-tree.h` and determined that a `struct Expr`
180180
contained source location information since it had the field `CharBlock
181181
source`. Thus, if I visited a `parser::Expr` node, I could get the source
182182
location information for the associated expression.
183183
184184
## Determining the `INTENT`
185185
I knew that I could find the `INTENT` of the dummy argument associated with the
186186
actual argument from the function called `dummyIntent()` in the class
187-
`evaluate::ActualArgument` in the file `include/flang/evaluate/call.h`. So
187+
`evaluate::ActualArgument` in the file `include/flang/Evaluate/call.h`. So
188188
if I could find an `evaluate::ActualArgument` in an expression, I could
189189
determine the `INTENT` of the associated dummy argument. I knew that it was
190190
valid to call `dummyIntent()` because the data on which `dummyIntent()`
@@ -216,12 +216,12 @@ find all of the `evaluate::ActualArgument` nodes.
216216

217217
Note that the compiler has multiple types called `Expr`. One is in the
218218
`parser` namespace. `parser::Expr` is defined in the file
219-
`include/flang/parser/parse-tree.h`. It represents a parsed expression that
219+
`include/flang/Parser/parse-tree.h`. It represents a parsed expression that
220220
maps directly to the source code and has fields that specify any operators in
221221
the expression, the operands, and the source position of the expression.
222222

223223
Additionally, in the namespace `evaluate`, there are `evaluate::Expr<T>`
224-
template classes defined in the file `include/flang/evaluate/expression.h`.
224+
template classes defined in the file `include/flang/Evaluate/expression.h`.
225225
These are parameterized over the various types of Fortran and constitute a
226226
suite of strongly-typed representations of valid Fortran expressions of type
227227
`T` that have been fully elaborated with conversion operations and subjected to
@@ -231,7 +231,7 @@ owns an instance of `evaluate::Expr<SomeType>`, the most general representation
231231
of an analyzed expression.
232232

233233
All of the declarations associated with both FUNCTION and SUBROUTINE calls are
234-
in `include/flang/evaluate/call.h`. An `evaluate::FunctionRef` inherits from
234+
in `include/flang/Evaluate/call.h`. An `evaluate::FunctionRef` inherits from
235235
an `evaluate::ProcedureRef` which contains the list of
236236
`evaluate::ActualArgument` nodes. But the relationship between an
237237
`evaluate::FunctionRef` node and its associated arguments is not relevant. I
@@ -269,16 +269,16 @@ argument was an active DO variable.
269269
## Adding a parse tree visitor
270270
I started my implementation by adding a visitor for `parser::Expr` nodes.
271271
Since this analysis is part of DO construct checking, I did this in
272-
`lib/semantics/check-do.cpp`. I added a print statement to the visitor to
272+
`lib/Semantics/check-do.cpp`. I added a print statement to the visitor to
273273
verify that my new code was actually getting executed.
274274
275-
In `lib/semantics/check-do.h`, I added the declaration for the visitor:
275+
In `lib/Semantics/check-do.h`, I added the declaration for the visitor:
276276
277277
```C++
278278
void Leave(const parser::Expr &);
279279
```
280280

281-
In `lib/semantics/check-do.cpp`, I added an (almost empty) implementation:
281+
In `lib/Semantics/check-do.cpp`, I added an (almost empty) implementation:
282282

283283
```C++
284284
void DoChecker::Leave(const parser::Expr &) {
@@ -316,7 +316,7 @@ framework to walk the `evaluate::Expr` to gather all of the
316316
`evaluate::ActualArgument` nodes. The code that I planned to model it on
317317
was the existing infrastructure that collected all of the `semantics::Symbol` nodes from an
318318
`evaluate::Expr`. I found this implementation in
319-
`lib/evaluate/tools.cpp`:
319+
`lib/Evaluate/tools.cpp`:
320320

321321
```C++
322322
struct CollectSymbolsHelper
@@ -334,7 +334,7 @@ was the existing infrastructure that collected all of the `semantics::Symbol` no
334334
```
335335
336336
Note that the `CollectSymbols()` function returns a `semantics::Symbolset`,
337-
which is declared in `include/flang/semantics/symbol.h`:
337+
which is declared in `include/flang/Semantics/symbol.h`:
338338
339339
```C++
340340
using SymbolSet = std::set<SymbolRef>;
@@ -356,11 +356,11 @@ full `semantics::Symbol` objects into the set. Ideally, we would be able to cre
356356
`std::set<Symbol &>` (a set of C++ references to symbols). But C++ doesn't
357357
support sets that contain references. This limitation is part of the rationale
358358
for the f18 implementation of type `common::Reference`, which is defined in
359-
`include/flang/common/reference.h`.
359+
`include/flang/Common/reference.h`.
360360
361361
`SymbolRef`, the specialization of the template `common::Reference` for
362362
`semantics::Symbol`, is declared in the file
363-
`include/flang/semantics/symbol.h`:
363+
`include/flang/Semantics/symbol.h`:
364364
365365
```C++
366366
using SymbolRef = common::Reference<const Symbol>;
@@ -370,7 +370,7 @@ So to implement something that would collect `evaluate::ActualArgument`
370370
nodes from an `evaluate::Expr`, I first defined the required types
371371
`ActualArgumentRef` and `ActualArgumentSet`. Since these are being
372372
used exclusively for DO construct semantic checking (currently), I put their
373-
definitions into `lib/semantics/check-do.cpp`:
373+
definitions into `lib/Semantics/check-do.cpp`:
374374

375375

376376
```C++
@@ -386,7 +386,7 @@ Since `ActualArgument` is in the namespace `evaluate`, I put the
386386
definition for `ActualArgumentRef` in that namespace, too.
387387
388388
I then modeled the code to create an `ActualArgumentSet` after the code to
389-
collect a `SymbolSet` and put it into `lib/semantics/check-do.cpp`:
389+
collect a `SymbolSet` and put it into `lib/Semantics/check-do.cpp`:
390390
391391
392392
```C++
@@ -525,8 +525,8 @@ symbol table node (`semantics::Symbol`) for the variable. My starting point was
525525
`evaluate::ActualArgument` node.
526526

527527
I was unsure of how to do this, so I browsed through existing code to look for
528-
how it treated `evaluate::ActualArgument` objects. Since most of the code that deals with the `evaluate` namespace is in the lib/evaluate directory, I looked there. I ran `grep` on all of the `.cpp` files looking for
529-
uses of `ActualArgument`. One of the first hits I got was in `lib/evaluate/call.cpp` in the definition of `ActualArgument::GetType()`:
528+
how it treated `evaluate::ActualArgument` objects. Since most of the code that deals with the `evaluate` namespace is in the lib/Evaluate directory, I looked there. I ran `grep` on all of the `.cpp` files looking for
529+
uses of `ActualArgument`. One of the first hits I got was in `lib/Evaluate/call.cpp` in the definition of `ActualArgument::GetType()`:
530530

531531
```C++
532532
std::optional<DynamicType> ActualArgument::GetType() const {
@@ -544,7 +544,7 @@ I noted the call to `UnwrapExpr()` that yielded a value of
544544
`Expr<SomeType>`. So I guessed that I could use this member function to
545545
get an `evaluate::Expr<SomeType>` on which I could perform further analysis.
546546

547-
I also knew that the header file `include/flang/evaluate/tools.h` held many
547+
I also knew that the header file `include/flang/Evaluate/tools.h` held many
548548
utility functions for dealing with `evaluate::Expr` objects. I was hoping to
549549
find something that would determine if an `evaluate::Expr` was a variable. So
550550
I searched for `IsVariable` and got a hit immediately.
@@ -560,7 +560,7 @@ I searched for `IsVariable` and got a hit immediately.
560560
561561
But I actually needed more than just the knowledge that an `evaluate::Expr` was
562562
a variable. I needed the `semantics::Symbol` associated with the variable. So
563-
I searched in `include/flang/evaluate/tools.h` for functions that returned a
563+
I searched in `include/flang/Evaluate/tools.h` for functions that returned a
564564
`semantics::Symbol`. I found the following:
565565
566566
```C++

flang/include/flang/common/Fortran-features.h renamed to flang/include/flang/Common/Fortran-features.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/Fortran-features.h -----------------*- C++ -*-===//
1+
//===-- include/flang/Common/Fortran-features.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.
@@ -9,9 +9,9 @@
99
#ifndef FORTRAN_COMMON_FORTRAN_FEATURES_H_
1010
#define FORTRAN_COMMON_FORTRAN_FEATURES_H_
1111

12-
#include "flang/common/Fortran.h"
13-
#include "flang/common/enum-set.h"
14-
#include "flang/common/idioms.h"
12+
#include "flang/Common/Fortran.h"
13+
#include "flang/Common/enum-set.h"
14+
#include "flang/Common/idioms.h"
1515

1616
namespace Fortran::common {
1717

flang/include/flang/common/Fortran.h renamed to flang/include/flang/Common/Fortran.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/Fortran.h --------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/Fortran.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.

flang/include/flang/common/bit-population-count.h renamed to flang/include/flang/Common/bit-population-count.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/bit-population-count.h -------------*- C++ -*-===//
1+
//===-- include/flang/Common/bit-population-count.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.

flang/include/flang/common/constexpr-bitset.h renamed to flang/include/flang/Common/constexpr-bitset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/constexpr-bitset.h -----------------*- C++ -*-===//
1+
//===-- include/flang/Common/constexpr-bitset.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.

flang/include/flang/common/default-kinds.h renamed to flang/include/flang/Common/default-kinds.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/default-kinds.h --------------------*- C++ -*-===//
1+
//===-- include/flang/Common/default-kinds.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.
@@ -9,7 +9,7 @@
99
#ifndef FORTRAN_COMMON_DEFAULT_KINDS_H_
1010
#define FORTRAN_COMMON_DEFAULT_KINDS_H_
1111

12-
#include "flang/common/Fortran.h"
12+
#include "flang/Common/Fortran.h"
1313
#include <cstdint>
1414

1515
namespace Fortran::common {

flang/include/flang/common/enum-set.h renamed to flang/include/flang/Common/enum-set.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/enum-set.h -------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/enum-set.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.

flang/include/flang/common/format.h renamed to flang/include/flang/Common/format.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/format.h ---------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/format.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.
@@ -10,7 +10,7 @@
1010
#define FORTRAN_COMMON_FORMAT_H_
1111

1212
#include "enum-set.h"
13-
#include "flang/common/Fortran.h"
13+
#include "flang/Common/Fortran.h"
1414
#include <cstring>
1515

1616
// Define a FormatValidator class template to validate a format expression

flang/include/flang/common/idioms.h renamed to flang/include/flang/Common/idioms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/idioms.h ---------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/idioms.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.

flang/include/flang/common/indirection.h renamed to flang/include/flang/Common/indirection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/indirection.h ----------------------*- C++ -*-===//
1+
//===-- include/flang/Common/indirection.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.

flang/include/flang/common/interval.h renamed to flang/include/flang/Common/interval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/interval.h -------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/interval.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.

flang/include/flang/common/leading-zero-bit-count.h renamed to flang/include/flang/Common/leading-zero-bit-count.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/leading-zero-bit-count.h -----------*- C++ -*-===//
1+
//===-- include/flang/Common/leading-zero-bit-count.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.

flang/include/flang/common/real.h renamed to flang/include/flang/Common/real.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/real.h -----------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/real.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.

flang/include/flang/common/reference-counted.h renamed to flang/include/flang/Common/reference-counted.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/reference-counted.h ----------------*- C++ -*-===//
1+
//===-- include/flang/Common/reference-counted.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.

flang/include/flang/common/reference.h renamed to flang/include/flang/Common/reference.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/reference.h ------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/reference.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.

flang/include/flang/common/restorer.h renamed to flang/include/flang/Common/restorer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/restorer.h -------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/restorer.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.

flang/include/flang/common/template.h renamed to flang/include/flang/Common/template.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/template.h -------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/template.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.
@@ -9,7 +9,7 @@
99
#ifndef FORTRAN_COMMON_TEMPLATE_H_
1010
#define FORTRAN_COMMON_TEMPLATE_H_
1111

12-
#include "flang/common/idioms.h"
12+
#include "flang/Common/idioms.h"
1313
#include <functional>
1414
#include <optional>
1515
#include <tuple>

flang/include/flang/common/uint128.h renamed to flang/include/flang/Common/uint128.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/uint128.h --------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/uint128.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.

flang/include/flang/common/unsigned-const-division.h renamed to flang/include/flang/Common/unsigned-const-division.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/unsigned-const-division.h ----------*- C++ -*-===//
1+
//===-- include/flang/Common/unsigned-const-division.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.

flang/include/flang/common/unwrap.h renamed to flang/include/flang/Common/unwrap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/common/unwrap.h ---------------------------*- C++ -*-===//
1+
//===-- include/flang/Common/unwrap.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.

flang/include/flang/decimal/binary-floating-point.h renamed to flang/include/flang/Decimal/binary-floating-point.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/decimal/binary-floating-point.h -----------*- C++ -*-===//
1+
//===-- include/flang/Decimal/binary-floating-point.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.
@@ -12,8 +12,8 @@
1212
// Access and manipulate the fields of an IEEE-754 binary
1313
// floating-point value via a generalized template.
1414

15-
#include "flang/common/real.h"
16-
#include "flang/common/uint128.h"
15+
#include "flang/Common/real.h"
16+
#include "flang/Common/uint128.h"
1717
#include <cinttypes>
1818
#include <climits>
1919
#include <cstring>

flang/include/flang/decimal/decimal.h renamed to flang/include/flang/Decimal/decimal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*===-- include/flang/decimal/decimal.h ---------------------------*- C++ -*-===
1+
/*===-- include/flang/Decimal/decimal.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.

flang/include/flang/evaluate/call.h renamed to flang/include/flang/Evaluate/call.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- include/flang/evaluate/call.h ---------------------------*- C++ -*-===//
1+
//===-- include/flang/Evaluate/call.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.
@@ -13,10 +13,10 @@
1313
#include "constant.h"
1414
#include "formatting.h"
1515
#include "type.h"
16-
#include "flang/common/indirection.h"
17-
#include "flang/common/reference.h"
18-
#include "flang/parser/char-block.h"
19-
#include "flang/semantics/attr.h"
16+
#include "flang/Common/indirection.h"
17+
#include "flang/Common/reference.h"
18+
#include "flang/Parser/char-block.h"
19+
#include "flang/Semantics/attr.h"
2020
#include <optional>
2121
#include <ostream>
2222
#include <vector>

0 commit comments

Comments
 (0)