Skip to content

Commit 5b79a19

Browse files
committed
Post-merge fixes
1 parent 0267f01 commit 5b79a19

File tree

11 files changed

+11
-142
lines changed

11 files changed

+11
-142
lines changed

flang-rt/lib/flang_rt/CUDA/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ add_flangrt_library(${CUFRT_LIBNAME}
1616
allocator.cpp
1717
descriptor.cpp
1818
kernel.cpp
19+
memmove-function.cpp
1920
memory.cpp
2021
registration.cpp
2122
)

flang-rt/unittests/Runtime/CUDA/CMakeLists.txt

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

99
add_flangrt_unittest(FlangCufRuntimeTests
10-
Allocatable.cpp
1110
Allocatable.cpp
1211
AllocatorCUF.cpp
1312
Memory.cpp
@@ -23,7 +22,7 @@ target_link_libraries(FlangCufRuntimeTests
2322
PRIVATE
2423
${CUDA_RT_TARGET}
2524
CufRuntime_cuda_${CUDAToolkit_VERSION_MAJOR}
26-
flang_rt
25+
flang_rt.unittest
2726
)
2827

2928
target_include_directories(FlangCufRuntimeTests PRIVATE ${CUDAToolkit_INCLUDE_DIRS})

flang/include/flang/Common/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

flang/include/flang/Runtime/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

flang/include/flang/Testing/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

flang/lib/Common/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

flang/lib/Frontend/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ add_flang_library(flangFrontend
2727
FortranParser
2828
FortranSemantics
2929
FortranEvaluate
30-
FortranSupport
30+
FortranCommon
3131
FortranSupport
3232
FortranLower
3333
FIRDialect

flang/lib/Lower/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ add_flang_library(FortranLower
5656
HLFIRDialect
5757
${dialect_libs}
5858
${extension_libs}
59-
FortranSupport
59+
FortranCommon
6060
FortranSupport
6161
FortranParser
6262
FortranEvaluate

flang/lib/Testing/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

flang/test/Driver/msvc-dependent-lib-flags.f90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,27 @@
44
! RUN: %flang -### --target=aarch64-windows-msvc -resource-dir=%S/Inputs/resource_dir -fms-runtime-lib=dll_dbg %S/Inputs/hello.f90 -v 2>&1 | FileCheck %s --check-prefixes=MSVC-DLL-DEBUG
55

66
! MSVC: -fc1
7+
! MSVC-SAME: --dependent-lib=clang_rt.builtins.lib
78
! MSVC-SAME: -D_MT
89
! MSVC-SAME: --dependent-lib=libcmt
910
! MSVC-SAME: --dependent-lib=flang_rt.static.lib
1011

1112
! MSVC-DEBUG: -fc1
13+
! MSVC-DEBUG-SAME: --dependent-lib=clang_rt.builtins.lib
1214
! MSVC-DEBUG-SAME: -D_MT
1315
! MSVC-DEBUG-SAME: -D_DEBUG
1416
! MSVC-DEBUG-SAME: --dependent-lib=libcmtd
1517
! MSVC-DEBUG-SAME: --dependent-lib=flang_rt.static_dbg.lib
1618

1719
! MSVC-DLL: -fc1
20+
! MSVC-DLL-SAME: --dependent-lib=clang_rt.builtins.lib
1821
! MSVC-DLL-SAME: -D_MT
1922
! MSVC-DLL-SAME: -D_DLL
2023
! MSVC-DLL-SAME: --dependent-lib=msvcrt
2124
! MSVC-DLL-SAME: --dependent-lib=flang_rt.dynamic.lib
2225

2326
! MSVC-DLL-DEBUG: -fc1
27+
! MSVC-DLL-DEBUG-SAME: --dependent-lib=clang_rt.builtins.lib
2428
! MSVC-DLL-DEBUG-SAME: -D_MT
2529
! MSVC-DLL-DEBUG-SAME: -D_DEBUG
2630
! MSVC-DLL-DEBUG-SAME: -D_DLL

0 commit comments

Comments
 (0)