Skip to content

Commit 18fa1d3

Browse files
committed
[clang+lld] Pass -platform_version args to ld64.lld
Fix regression where we aren't passing `-platform_version` to new ld64.lld after {D95204}. Most of the changes were originally in D95204, but I backed them out due to test failures on builds which have `CLANG_DEFAULT_LINKER=lld`. The tests are properly updated in this diff. Reviewed By: #lld-macho, thakis Differential Revision: https://reviews.llvm.org/D97741
1 parent 563ea45 commit 18fa1d3

11 files changed

+44
-43
lines changed

clang/lib/Driver/ToolChain.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -620,11 +620,11 @@ std::string ToolChain::GetLinkerPath(bool *LinkerIsLLD,
620620

621621
std::string LinkerPath(GetProgramPath(LinkerName.c_str()));
622622
if (llvm::sys::fs::can_execute(LinkerPath)) {
623-
// FIXME: Remove lld.darwinnew here once it's the only MachO lld.
623+
// FIXME: Remove LinkerIsLLDDarwinNew once there's only one MachO lld.
624624
if (LinkerIsLLD)
625-
*LinkerIsLLD = UseLinker == "lld" || UseLinker == "lld.darwinnew";
625+
*LinkerIsLLD = UseLinker == "lld" || UseLinker == "lld.darwinold";
626626
if (LinkerIsLLDDarwinNew)
627-
*LinkerIsLLDDarwinNew = UseLinker == "lld.darwinnew";
627+
*LinkerIsLLDDarwinNew = UseLinker == "lld";
628628
return LinkerPath;
629629
}
630630
}

clang/test/Driver/darwin-infer-simulator-sdkroot.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
//
55
// RUN: rm -rf %t/SDKs/iPhoneOS8.0.0.sdk
66
// RUN: mkdir -p %t/SDKs/iPhoneOS8.0.0.sdk
7-
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk %clang %s -mlinker-version=400 -### 2>&1 \
7+
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk %clang -fuse-ld= %s -mlinker-version=400 -### 2>&1 \
88
// RUN: | FileCheck --check-prefix=CHECK-IPHONE %s
9-
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk IPHONEOS_DEPLOYMENT_TARGET=8.0 %clang %s -mlinker-version=400 -### 2>&1 \
9+
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk IPHONEOS_DEPLOYMENT_TARGET=8.0 %clang -fuse-ld= %s -mlinker-version=400 -### 2>&1 \
1010
// RUN: | FileCheck --check-prefix=CHECK-IPHONE %s
1111
// CHECK-IPHONE: clang
1212
// CHECK-IPHONE: "-cc1"
@@ -17,7 +17,7 @@
1717
//
1818
// RUN: rm -rf %t/SDKs/iPhoneSimulator8.0.sdk
1919
// RUN: mkdir -p %t/SDKs/iPhoneSimulator8.0.sdk
20-
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator8.0.sdk %clang -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
20+
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator8.0.sdk %clang -fuse-ld= -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
2121
// RUN: | FileCheck --check-prefix=CHECK-SIMULATOR %s
2222
//
2323
// CHECK-SIMULATOR: clang
@@ -29,7 +29,7 @@
2929
//
3030
// RUN: rm -rf %t/SDKs/iPhoneSimulator14.0.sdk
3131
// RUN: mkdir -p %t/SDKs/iPhoneSimulator14.0.sdk
32-
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator14.0.sdk %clang -arch arm64 %s -mlinker-version=400 -### 2>&1 \
32+
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator14.0.sdk %clang -fuse-ld= -arch arm64 %s -mlinker-version=400 -### 2>&1 \
3333
// RUN: | FileCheck --check-prefix=CHECK-SIMULATOR-ARM64 %s
3434
//
3535
// CHECK-SIMULATOR-ARM64: clang
@@ -41,9 +41,9 @@
4141
//
4242
// RUN: rm -rf %t/SDKs/WatchOS3.0.sdk
4343
// RUN: mkdir -p %t/SDKs/WatchOS3.0.sdk
44-
// RUN: env SDKROOT=%t/SDKs/WatchOS3.0.sdk %clang %s -mlinker-version=400 -### 2>&1 \
44+
// RUN: env SDKROOT=%t/SDKs/WatchOS3.0.sdk %clang %s -fuse-ld= -mlinker-version=400 -### 2>&1 \
4545
// RUN: | FileCheck --check-prefix=CHECK-WATCH %s
46-
// RUN: env WATCHOS_DEPLOYMENT_TARGET=3.0 %clang %s -isysroot %t/SDKs/WatchOS3.0.sdk -mlinker-version=400 -### 2>&1 \
46+
// RUN: env WATCHOS_DEPLOYMENT_TARGET=3.0 %clang %s -fuse-ld= -isysroot %t/SDKs/WatchOS3.0.sdk -mlinker-version=400 -### 2>&1 \
4747
// RUN: | FileCheck --check-prefix=CHECK-WATCH %s
4848
//
4949
// CHECK-WATCH: clang
@@ -55,7 +55,7 @@
5555
//
5656
// RUN: rm -rf %t/SDKs/WatchSimulator3.0.sdk
5757
// RUN: mkdir -p %t/SDKs/WatchSimulator3.0.sdk
58-
// RUN: env SDKROOT=%t/SDKs/WatchSimulator3.0.sdk %clang -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
58+
// RUN: env SDKROOT=%t/SDKs/WatchSimulator3.0.sdk %clang -fuse-ld= -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
5959
// RUN: | FileCheck --check-prefix=CHECK-WATCH-SIMULATOR %s
6060
//
6161
// CHECK-WATCH-SIMULATOR: clang
@@ -67,7 +67,7 @@
6767
//
6868
// RUN: rm -rf %t/SDKs/WatchSimulator7.0.sdk
6969
// RUN: mkdir -p %t/SDKs/WatchSimulator7.0.sdk
70-
// RUN: env SDKROOT=%t/SDKs/WatchSimulator7.0.sdk %clang -arch arm64 %s -mlinker-version=400 -### 2>&1 \
70+
// RUN: env SDKROOT=%t/SDKs/WatchSimulator7.0.sdk %clang -fuse-ld= -arch arm64 %s -mlinker-version=400 -### 2>&1 \
7171
// RUN: | FileCheck --check-prefix=CHECK-WATCH-SIMULATOR-ARM64 %s
7272
//
7373
// CHECK-WATCH-SIMULATOR-ARM64: clang
@@ -79,7 +79,7 @@
7979
//
8080
// RUN: rm -rf %t/SDKs/AppleTVOS10.0.sdk
8181
// RUN: mkdir -p %t/SDKs/AppleTVOS10.0.sdk
82-
// RUN: env SDKROOT=%t/SDKs/AppleTVOS10.0.sdk %clang %s -mlinker-version=400 -### 2>&1 \
82+
// RUN: env SDKROOT=%t/SDKs/AppleTVOS10.0.sdk %clang %s -fuse-ld= -mlinker-version=400 -### 2>&1 \
8383
// RUN: | FileCheck --check-prefix=CHECK-TV %s
8484
//
8585
// CHECK-TV: clang
@@ -91,7 +91,7 @@
9191
//
9292
// RUN: rm -rf %t/SDKs/AppleTVSimulator10.0.sdk
9393
// RUN: mkdir -p %t/SDKs/AppleTVSimulator10.0.sdk
94-
// RUN: env SDKROOT=%t/SDKs/AppleTVSimulator10.0.sdk %clang -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
94+
// RUN: env SDKROOT=%t/SDKs/AppleTVSimulator10.0.sdk %clang -fuse-ld= -arch x86_64 %s -mlinker-version=400 -### 2>&1 \
9595
// RUN: | FileCheck --check-prefix=CHECK-TV-SIMULATOR %s
9696
//
9797
// CHECK-TV-SIMULATOR: clang
@@ -103,7 +103,7 @@
103103
//
104104
// RUN: rm -rf %t/SDKs/AppleTVSimulator14.0.sdk
105105
// RUN: mkdir -p %t/SDKs/AppleTVSimulator14.0.sdk
106-
// RUN: env SDKROOT=%t/SDKs/AppleTVSimulator14.0.sdk %clang -arch arm64 %s -mlinker-version=400 -### 2>&1 \
106+
// RUN: env SDKROOT=%t/SDKs/AppleTVSimulator14.0.sdk %clang -fuse-ld= -arch arm64 %s -mlinker-version=400 -### 2>&1 \
107107
// RUN: | FileCheck --check-prefix=CHECK-TV-SIMULATOR-ARM64 %s
108108
//
109109
// CHECK-TV-SIMULATOR-ARM64: clang
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
// With -fuse-ld=lld, -demangle is always passed to the linker on Darwin.
22
// REQUIRES: shell
33

4+
// FIXME: Remove this test case when we remove the lld.darwinold backend.
45
// RUN: %clang --target=x86_64-apple-darwin -### \
5-
// RUN: -fuse-ld=lld -B%S/Inputs/lld -mlinker-version=0 %s 2>&1 \
6+
// RUN: -fuse-ld=lld.darwinold -B%S/Inputs/lld -mlinker-version=0 %s 2>&1 \
67
// RUN: | FileCheck %s
7-
// FIXME: Remove ld.darwinnew once it's the default (and only) mach-o lld.
8+
89
// RUN: %clang --target=x86_64-apple-darwin -### \
9-
// RUN: -fuse-ld=lld.darwinnew -B%S/Inputs/lld -mlinker-version=0 %s 2>&1 \
10+
// RUN: -fuse-ld=lld -B%S/Inputs/lld -mlinker-version=0 %s 2>&1 \
1011
// RUN: | FileCheck %s
1112

1213
// CHECK: "-demangle"

clang/test/Driver/darwin-ld-lto.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: mkdir -p %t/bin
66
// RUN: mkdir -p %t/lib
77
// RUN: touch %t/lib/libLTO.dylib
8-
// RUN: %clang -target x86_64-apple-darwin10 -### %s \
8+
// RUN: %clang -fuse-ld= -target x86_64-apple-darwin10 -### %s \
99
// RUN: -ccc-install-dir %t/bin -mlinker-version=133 2> %t.log
1010
// RUN: FileCheck -check-prefix=LINK_LTOLIB_PATH %s -input-file %t.log
1111
//
@@ -14,7 +14,7 @@
1414

1515
// Also pass -lto_library even if the file doesn't exist; if it's needed at
1616
// link time, ld will complain instead.
17-
// RUN: %clang -target x86_64-apple-darwin10 -### %s \
17+
// RUN: %clang -fuse-ld= -target x86_64-apple-darwin10 -### %s \
1818
// RUN: -ccc-install-dir %S/dummytestdir -mlinker-version=133 2> %t.log
1919
// RUN: FileCheck -check-prefix=LINK_LTOLIB_PATH %s -input-file %t.log
2020

clang/test/Driver/darwin-ld-platform-version-ios.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: touch %t.o
22

3-
// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld= \
3+
// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld=lld.darwinold \
44
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \
55
// RUN: -### %t.o 2>&1 \
66
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
@@ -12,15 +12,15 @@
1212
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=520 \
1313
// RUN: -### %t.o 2>&1 \
1414
// RUN: | FileCheck --check-prefix=LINKER-NEW %s
15-
// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld=lld.darwinnew \
15+
// RUN: %clang -target arm64-apple-ios12.3 -fuse-ld=lld \
1616
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \
1717
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
1818
// RUN: | FileCheck --check-prefix=LINKER-NEW %s
1919
// RUN: %clang -target x86_64-apple-ios13-simulator -fuse-ld= \
2020
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=520 \
2121
// RUN: -### %t.o 2>&1 \
2222
// RUN: | FileCheck --check-prefix=SIMUL %s
23-
// RUN: %clang -target x86_64-apple-ios13-simulator -fuse-ld=lld.darwinnew \
23+
// RUN: %clang -target x86_64-apple-ios13-simulator -fuse-ld=lld \
2424
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \
2525
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
2626
// RUN: | FileCheck --check-prefix=SIMUL %s

clang/test/Driver/darwin-ld-platform-version-macos.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// RUN: touch %t.o
22

3-
// RUN: %clang -target x86_64-apple-macos10.13 -fuse-ld= \
3+
// RUN: %clang -target x86_64-apple-macos10.13 -fuse-ld=lld.darwinold \
44
// RUN: -isysroot %S/Inputs/MacOSX10.14.sdk -mlinker-version=0 \
55
// RUN: -### %t.o 2>&1 \
66
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
7-
// RUN: %clang -target x86_64-apple-macos10.13 -fuse-ld=lld.darwinnew \
7+
// RUN: %clang -target x86_64-apple-macos10.13 -fuse-ld=lld \
88
// RUN: -isysroot %S/Inputs/MacOSX10.14.sdk -mlinker-version=0 \
99
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
1010
// RUN: | FileCheck --check-prefix=LINKER-NEW %s
@@ -21,7 +21,7 @@
2121
// RUN: -isysroot %S/Inputs/MacOSX10.14.sdk -mlinker-version=400 \
2222
// RUN: -### %t.o 2>&1 \
2323
// RUN: | FileCheck --check-prefix=ARM64_OLD %s
24-
// RUN: %clang -target arm64-apple-macos10.13 -fuse-ld=lld.darwinnew \
24+
// RUN: %clang -target arm64-apple-macos10.13 -fuse-ld=lld \
2525
// RUN: -isysroot %S/Inputs/MacOSX10.14.sdk -mlinker-version=400 \
2626
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
2727
// RUN: | FileCheck --check-prefix=ARM64_NEW %s

clang/test/Driver/darwin-ld-platform-version-tvos.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// RUN: touch %t.o
22

3-
// RUN: %clang -target arm64-apple-tvos12.3 -fuse-ld= \
3+
// RUN: %clang -target arm64-apple-tvos12.3 -fuse-ld=lld.darwinold \
44
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \
55
// RUN: -### %t.o 2>&1 \
66
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
77
// RUN: %clang -target arm64-apple-tvos12.3 -fuse-ld= \
88
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=400 \
99
// RUN: -### %t.o 2>&1 \
1010
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
11-
// RUN: %clang -target arm64-apple-tvos12.3 -fuse-ld=lld.darwinnew \
11+
// RUN: %clang -target arm64-apple-tvos12.3 -fuse-ld=lld \
1212
// RUN: -isysroot %S/Inputs/iPhoneOS13.0.sdk -mlinker-version=0 \
1313
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
1414
// RUN: | FileCheck --check-prefix=LINKER-NEW %s

clang/test/Driver/darwin-ld-platform-version-watchos.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// RUN: touch %t.o
22

3-
// RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld= \
3+
// RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld=lld.darwinold \
44
// RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=0 \
55
// RUN: -### %t.o 2>&1 \
66
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
77
// RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld= \
88
// RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=400 \
99
// RUN: -### %t.o 2>&1 \
1010
// RUN: | FileCheck --check-prefix=LINKER-OLD %s
11-
// RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld=lld.darwinnew \
11+
// RUN: %clang -target arm64_32-apple-watchos5.2 -fuse-ld=lld \
1212
// RUN: -isysroot %S/Inputs/WatchOS6.0.sdk -mlinker-version=0 \
1313
// RUN: -### %t.o -B%S/Inputs/lld 2>&1 \
1414
// RUN: | FileCheck --check-prefix=LINKER-NEW %s

clang/test/Driver/darwin-sdkroot.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
//
4444
// RUN: rm -rf %t/SDKs/iPhoneOS8.0.0.sdk
4545
// RUN: mkdir -p %t/SDKs/iPhoneOS8.0.0.sdk
46-
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk %clang -target arm64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
46+
// RUN: env SDKROOT=%t/SDKs/iPhoneOS8.0.0.sdk %clang -fuse-ld= -target arm64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
4747
// RUN: | FileCheck --check-prefix=CHECK-IPHONE %s
4848
//
4949
// CHECK-IPHONE: clang
@@ -55,7 +55,7 @@
5555
//
5656
// RUN: rm -rf %t/SDKs/iPhoneSimulator8.0.sdk
5757
// RUN: mkdir -p %t/SDKs/iPhoneSimulator8.0.sdk
58-
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator8.0.sdk %clang -target x86_64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
58+
// RUN: env SDKROOT=%t/SDKs/iPhoneSimulator8.0.sdk %clang -fuse-ld= -target x86_64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
5959
// RUN: | FileCheck --check-prefix=CHECK-SIMULATOR %s
6060
//
6161
// CHECK-SIMULATOR: clang
@@ -66,7 +66,7 @@
6666
//
6767
// RUN: rm -rf %t/SDKs/MacOSX10.10.0.sdk
6868
// RUN: mkdir -p %t/SDKs/MacOSX10.10.0.sdk
69-
// RUN: env SDKROOT=%t/SDKs/MacOSX10.10.0.sdk %clang -target x86_64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
69+
// RUN: env SDKROOT=%t/SDKs/MacOSX10.10.0.sdk %clang -fuse-ld= -target x86_64-apple-darwin -mlinker-version=400 --sysroot="" %s -### 2>&1 \
7070
// RUN: | FileCheck --check-prefix=CHECK-MACOSX %s
7171
//
7272
// CHECK-MACOSX: clang

clang/test/Driver/target-triple-deployment.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
// RUN: touch %t.o
2-
// RUN: %clang -target x86_64-apple-macosx10.4 -mlinker-version=400 -### %t.o 2> %t.log
3-
// RUN: %clang -target x86_64-apple-darwin9 -mlinker-version=400 -### %t.o 2>> %t.log
4-
// RUN: %clang -target x86_64-apple-macosx10.7 -mlinker-version=400 -### %t.o 2>> %t.log
2+
// RUN: %clang -fuse-ld= -target x86_64-apple-macosx10.4 -mlinker-version=400 -### %t.o 2> %t.log
3+
// RUN: %clang -fuse-ld= -target x86_64-apple-darwin9 -mlinker-version=400 -### %t.o 2>> %t.log
4+
// RUN: %clang -fuse-ld= -target x86_64-apple-macosx10.7 -mlinker-version=400 -### %t.o 2>> %t.log
55
//
6-
// RUN: %clang -target armv7-apple-ios -mlinker-version=400 -### %t.o 2>> %t.log
7-
// RUN: %clang -target armv7-apple-ios0.0 -mlinker-version=400 -### %t.o 2>> %t.log
8-
// RUN: %clang -target armv7-apple-ios1.2.3 -mlinker-version=400 -### %t.o 2>> %t.log
9-
// RUN: %clang -target armv7-apple-ios5.0 -mlinker-version=400 -### %t.o 2>> %t.log
10-
// RUN: %clang -target armv7-apple-ios7.0 -mlinker-version=400 -### %t.o 2>> %t.log
11-
// RUN: %clang -target arm64-apple-ios -mlinker-version=400 -### %t.o 2>> %t.log
12-
// RUN: %clang -target arm64e-apple-ios13.0 -mlinker-version=400 -### %t.o 2>> %t.log
13-
// RUN: %clang -target arm64e-apple-ios14.1 -mlinker-version=400 -### %t.o 2>> %t.log
6+
// RUN: %clang -fuse-ld= -target armv7-apple-ios -mlinker-version=400 -### %t.o 2>> %t.log
7+
// RUN: %clang -fuse-ld= -target armv7-apple-ios0.0 -mlinker-version=400 -### %t.o 2>> %t.log
8+
// RUN: %clang -fuse-ld= -target armv7-apple-ios1.2.3 -mlinker-version=400 -### %t.o 2>> %t.log
9+
// RUN: %clang -fuse-ld= -target armv7-apple-ios5.0 -mlinker-version=400 -### %t.o 2>> %t.log
10+
// RUN: %clang -fuse-ld= -target armv7-apple-ios7.0 -mlinker-version=400 -### %t.o 2>> %t.log
11+
// RUN: %clang -fuse-ld= -target arm64-apple-ios -mlinker-version=400 -### %t.o 2>> %t.log
12+
// RUN: %clang -fuse-ld= -target arm64e-apple-ios13.0 -mlinker-version=400 -### %t.o 2>> %t.log
13+
// RUN: %clang -fuse-ld= -target arm64e-apple-ios14.1 -mlinker-version=400 -### %t.o 2>> %t.log
1414
//
1515
// RUN: FileCheck %s < %t.log
1616

0 commit comments

Comments
 (0)