Skip to content

Commit 23da083

Browse files
committed
Post-merge fixes
1 parent 7caea4d commit 23da083

File tree

11 files changed

+11
-20
lines changed

11 files changed

+11
-20
lines changed

flang-rt/include/flang-rt/allocator-registry.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_
10-
#define FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_
9+
#ifndef FLANG_RT_ALLOCATOR_REGISTRY_H_
10+
#define FLANG_RT_ALLOCATOR_REGISTRY_H_
1111

1212
#include "flang/Common/api-attrs.h"
1313
#include "flang/Runtime/allocator-registry-consts.h"
@@ -55,4 +55,4 @@ RT_OFFLOAD_VAR_GROUP_END
5555

5656
} // namespace Fortran::runtime
5757

58-
#endif // FORTRAN_RUNTIME_ALLOCATOR_REGISTRY_H_
58+
#endif /* FLANG_RT_ALLOCATOR_REGISTRY_H_ */

flang-rt/lib/CufRuntime/kernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- runtime/CUDA/kernel.cpp -------------------------------------------===//
1+
//===-- lib/CufRuntime/kernel.cpp -------------------------------*- 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-rt/lib/CufRuntime/registration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- runtime/CUDA/registration.cpp -------------------------------------===//
1+
//===-- lib/CufRuntime/registration.cpp -------------------------*- 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-rt/lib/FortranFloat128Math/remainder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- runtime/Float128Math/remainder.cpp --------------------------------===//
1+
//===-- lib/FortranFloat128Math/remainder.cpp -------------------*- 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/Frontend/CompilerInvocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
#ifndef FORTRAN_FRONTEND_COMPILERINVOCATION_H
1414
#define FORTRAN_FRONTEND_COMPILERINVOCATION_H
1515

16-
#include "flang/Common/LangOptions.h"
1716
#include "flang/Frontend/CodeGenOptions.h"
1817
#include "flang/Frontend/FrontendOptions.h"
1918
#include "flang/Frontend/PreprocessorOptions.h"
2019
#include "flang/Frontend/TargetOptions.h"
2120
#include "flang/Lower/LoweringOptions.h"
2221
#include "flang/Parser/parsing.h"
2322
#include "flang/Semantics/semantics.h"
23+
#include "flang/Support/LangOptions.h"
2424
#include "clang/Basic/Diagnostic.h"
2525
#include "clang/Basic/DiagnosticOptions.h"
2626
#include "llvm/Option/ArgList.h"

flang/include/flang/Lower/Bridge.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#ifndef FORTRAN_LOWER_BRIDGE_H
1414
#define FORTRAN_LOWER_BRIDGE_H
1515

16-
#include "flang/Common/Fortran.h"
1716
#include "flang/Frontend/CodeGenOptions.h"
1817
#include "flang/Frontend/TargetOptions.h"
1918
#include "flang/Lower/AbstractConverter.h"

flang/include/flang/Tools/CrossToolHelpers.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
#ifndef FORTRAN_TOOLS_CROSS_TOOL_HELPERS_H
1414
#define FORTRAN_TOOLS_CROSS_TOOL_HELPERS_H
1515

16-
#include "flang/Common/LangOptions.h"
17-
#include "flang/Common/MathOptionsBase.h"
1816
#include "flang/Frontend/CodeGenOptions.h"
19-
#include "flang/Frontend/LangOptions.h"
17+
#include "flang/Support/LangOptions.h"
2018
#include "flang/Support/MathOptionsBase.h"
2119
#include <cstdint>
2220

flang/lib/Evaluate/intrinsics-library.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#include "host.h"
1717
#include "flang/Common/erfc-scaled.h"
1818
#include "flang/Common/idioms.h"
19-
#include "flang/Common/static-multimap-view.h"
2019
#include "flang/Evaluate/expression.h"
2120
#include "flang/Support/static-multimap-view.h"
2221
#include <cfloat>

flang/lib/Optimizer/Transforms/CUFGPUToLLVMConversion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "flang/Optimizer/Transforms/CUFGPUToLLVMConversion.h"
10-
#include "flang/Common/Fortran.h"
1110
#include "flang/Optimizer/CodeGen/TypeConverter.h"
1211
#include "flang/Optimizer/Support/DataLayout.h"
1312
#include "flang/Runtime/CUDA/common.h"
13+
#include "flang/Support/Fortran.h"
1414
#include "mlir/Conversion/LLVMCommon/Pattern.h"
1515
#include "mlir/Dialect/GPU/IR/GPUDialect.h"
1616
#include "mlir/Pass/Pass.h"

flang/lib/Optimizer/Transforms/CUFOpConversion.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "flang/Optimizer/Transforms/CufOpConversion.h"
10-
#include "flang/Optimizer/Transforms/CUFOpConversion.h"
11-
#include "flang/Common/Fortran.h"
1210
#include "flang/Optimizer/Builder/Runtime/RTBuilder.h"
1311
#include "flang/Optimizer/CodeGen/TypeConverter.h"
1412
#include "flang/Optimizer/Dialect/CUF/CUFOps.h"
@@ -17,6 +15,7 @@
1715
#include "flang/Optimizer/HLFIR/HLFIROps.h"
1816
#include "flang/Optimizer/Support/DataLayout.h"
1917
#include "flang/Optimizer/Transforms/CUFCommon.h"
18+
#include "flang/Optimizer/Transforms/CUFOpConversion.h"
2019
#include "flang/Runtime/CUDA/allocatable.h"
2120
#include "flang/Runtime/CUDA/common.h"
2221
#include "flang/Runtime/CUDA/descriptor.h"

0 commit comments

Comments
 (0)