Skip to content

Commit a6b7618

Browse files
committed
Merge branch 'users/meinersbur/flang_runtime_move-files' into users/meinersbur/flang_runtime
2 parents 19294cb + f9a732e commit a6b7618

File tree

8 files changed

+13
-2
lines changed

8 files changed

+13
-2
lines changed

flang-rt/lib/flang_rt/CUDA/allocatable.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "flang/Runtime/CUDA/descriptor.h"
1616
#include "flang/Runtime/CUDA/memmove-function.h"
1717
#include "flang/Runtime/allocatable.h"
18+
#include "flang/Runtime/descriptor.h"
1819

1920
#include "cuda_runtime.h"
2021

flang-rt/lib/flang_rt/CUDA/allocator.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "flang/Common/ISO_Fortran_binding_wrapper.h"
1616
#include "flang/Runtime/CUDA/common.h"
1717
#include "flang/Support/Fortran.h"
18+
#include "flang/Support/Fortran.h"
1819

1920
#include "cuda_runtime.h"
2021

flang-rt/unittests/Runtime/CUDA/Allocatable.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
#include "flang/Runtime/CUDA/common.h"
1616
#include "flang/Runtime/CUDA/descriptor.h"
1717
#include "flang/Support/Fortran.h"
18+
#include "flang/Runtime/descriptor.h"
19+
#include "flang/Runtime/memory.h"
20+
#include "flang/Support/Fortran.h"
1821

1922
#include "cuda_runtime.h"
2023

flang-rt/unittests/Runtime/CUDA/AllocatorCUF.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
#include "flang/Runtime/CUDA/descriptor.h"
1616
#include "flang/Runtime/allocatable.h"
1717
#include "flang/Support/Fortran.h"
18+
#include "flang/Runtime/descriptor.h"
19+
#include "flang/Runtime/memory.h"
20+
#include "flang/Support/Fortran.h"
1821

1922
using namespace Fortran::runtime;
2023
using namespace Fortran::runtime::cuda;

flang-rt/unittests/Runtime/CUDA/Memory.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include "flang/Runtime/CUDA/descriptor.h"
1717
#include "flang/Runtime/allocatable.h"
1818
#include "flang/Support/Fortran.h"
19+
#include "flang/Support/Fortran.h"
1920

2021
#include "cuda_runtime.h"
2122

flang/lib/Optimizer/Builder/IntrinsicCall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ prettyPrintIntrinsicName(fir::FirOpBuilder &builder, mlir::Location loc,
778778
// Generate a call to the Fortran runtime library providing
779779
// support for 128-bit float math.
780780
// On 'HAS_LDBL128' targets the implementation
781-
// is provided by flang_rt, otherwise, it is done via
781+
// is provided by FortranRuntime, otherwise, it is done via
782782
// FortranFloat128Math library. In the latter case the compiler
783783
// has to be built with FLANG_RUNTIME_F128_MATH_LIB to guarantee
784784
// proper linking actions in the driver.

flang/tools/f18-parse-demo/f18-parse-demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
// scaffolding compiler driver that can test some semantic passes of the
2222
// F18 compiler under development.
2323

24-
#include "flang/Support/Fortran-features.h"
2524
#include "flang/Parser/characters.h"
2625
#include "flang/Parser/dump-parse-tree.h"
2726
#include "flang/Parser/message.h"
@@ -30,6 +29,7 @@
3029
#include "flang/Parser/parsing.h"
3130
#include "flang/Parser/provenance.h"
3231
#include "flang/Parser/unparse.h"
32+
#include "flang/Support/Fortran-features.h"
3333
#include "flang/Support/default-kinds.h"
3434
#include "llvm/Support/Errno.h"
3535
#include "llvm/Support/FileSystem.h"

flang/unittests/Evaluate/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ set(LLVM_REQUIRES_RTTI ON)
6464
add_flang_nongtest_unittest(real
6565
FortranEvaluateTesting
6666
FortranEvaluate
67+
FortranCommon
68+
FortranSupport
6769
FortranSemantics
6870
)
6971
llvm_update_compile_flags(real.test)

0 commit comments

Comments
 (0)