Skip to content

Commit 6cfcfbd

Browse files
committed
[Driver][test] Remove unneeded -no-canonical-prefixes and use preferred --target=
Similar to D119309
1 parent fb7a435 commit 6cfcfbd

Some content is hidden

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

42 files changed

+1052
-1056
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// RUN: %clang -no-canonical-prefixes -### -target amdgcn-- -mcpu=gfx803 %s 2>&1 | FileCheck %s
2-
// RUN: %clang -no-canonical-prefixes -### -target amdgcn-amd- -mcpu=gfx803 %s 2>&1 | FileCheck %s
3-
// RUN: %clang -no-canonical-prefixes -### -target amdgcn-amd-amdhsa -mcpu=gfx803 %s 2>&1 | FileCheck %s
4-
// RUN: %clang -no-canonical-prefixes -### -target amdgcn-amd-amdpal -mcpu=gfx803 %s 2>&1 | FileCheck %s
5-
// RUN: %clang -no-canonical-prefixes -### -target amdgcn-amd-mesa3d -mcpu=gfx803 %s 2>&1 | FileCheck %s
1+
// RUN: %clang -### --target=amdgcn-- -mcpu=gfx803 %s 2>&1 | FileCheck %s
2+
// RUN: %clang -### --target=amdgcn-amd- -mcpu=gfx803 %s 2>&1 | FileCheck %s
3+
// RUN: %clang -### --target=amdgcn-amd-amdhsa -mcpu=gfx803 %s 2>&1 | FileCheck %s
4+
// RUN: %clang -### --target=amdgcn-amd-amdpal -mcpu=gfx803 %s 2>&1 | FileCheck %s
5+
// RUN: %clang -### --target=amdgcn-amd-mesa3d -mcpu=gfx803 %s 2>&1 | FileCheck %s
66

77
// CHECK: clang{{.*}} "-mrelocation-model" "pic" "-pic-level" "1"

clang/test/Driver/ananas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang -no-canonical-prefixes -target x86_64-unknown-ananas -static %s \
1+
// RUN: %clang --target=x86_64-unknown-ananas -static %s \
22
// RUN: --sysroot=%S/Inputs/ananas-tree -### 2>&1 \
33
// RUN: | FileCheck --check-prefix=CHECK-STATIC %s
44
// CHECK-STATIC: ld{{.*}}" "-Bstatic"
@@ -8,7 +8,7 @@
88
// CHECK-STATIC: crtend.o
99
// CHECK-STATIC: crtn.o
1010

11-
// RUN: %clang -no-canonical-prefixes -target x86_64-unknown-ananas -shared %s \
11+
// RUN: %clang --target=x86_64-unknown-ananas -shared %s \
1212
// RUN: --sysroot=%S/Inputs/ananas-tree -### 2>&1 \
1313
// RUN: | FileCheck --check-prefix=CHECK-SHARED %s
1414
// CHECK-SHARED: crti.o

clang/test/Driver/avr-link-nostdlib-nodefaultlibs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=atmega328 -nostdlib %s 2>&1 | FileCheck %s
2-
// RUN: %clang -### -target avr -no-canonical-prefixes -save-temps -mmcu=atmega328 -nodefaultlibs %s 2>&1 | FileCheck %s
1+
// RUN: %clang -### --target=avr -save-temps -mmcu=atmega328 -nostdlib %s 2>&1 | FileCheck %s
2+
// RUN: %clang -### --target=avr -save-temps -mmcu=atmega328 -nodefaultlibs %s 2>&1 | FileCheck %s
33

44
// nostdlib and nodefaultlibs programs should compile fine.
55

clang/test/Driver/cc-log-diagnostics.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: rm -f %t.log
22
// RUN: env RC_DEBUG_OPTIONS=1 \
33
// RUN: CC_LOG_DIAGNOSTICS=1 CC_LOG_DIAGNOSTICS_FILE=%t.log \
4-
// RUN: %clang -Wfoobar -no-canonical-prefixes -target x86_64-apple-darwin10 -fsyntax-only %s
4+
// RUN: %clang -Wfoobar --target=x86_64-apple-darwin10 -fsyntax-only %s
55
// RUN: FileCheck %s < %t.log
66

77
int f0(void) {}

clang/test/Driver/cc-print-options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: env CC_PRINT_OPTIONS=1 \
22
// RUN: CC_PRINT_OPTIONS_FILE=%t.log \
3-
// RUN: %clang -no-canonical-prefixes -S -o %t.s %s
3+
// RUN: %clang -S -o %t.s %s
44
// RUN: FileCheck %s < %t.log
55

66
// CHECK: [Logging clang options]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// RUN: env CC_PRINT_PROC_STAT=1 \
22
// RUN: CC_PRINT_PROC_STAT_FILE=%t.csv \
3-
// RUN: %clang -no-canonical-prefixes -S -o %t.s %s
3+
// RUN: %clang -S -o %t.s %s
44
// RUN: FileCheck --check-prefix=CHECK-CSV %s < %t.csv
55
// CHECK-CSV: clang{{.*}},"{{.*}}.s",{{[0-9]+}},{{[0-9]+}},{{[0-9]+}}
66

77
// RUN: env CC_PRINT_PROC_STAT=1 \
8-
// RUN: %clang -no-canonical-prefixes -c -fintegrated-as %s -o %t.o | FileCheck %s
8+
// RUN: %clang -c -fintegrated-as %s | FileCheck %s
99
// CHECK: clang{{.*}}: output={{.*}}.o, total={{[0-9.]+}} ms, user={{[0-9.]+}} ms, mem={{[0-9]+}} Kb

clang/test/Driver/compilation_database.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: mkdir -p %t.workdir && cd %t.workdir
2-
// RUN: %clang -fintegrated-as -MD -MP --sysroot=somewhere -c -x c %s -xc++ %s -Wall -MJ - -no-canonical-prefixes 2>&1 | FileCheck %s
3-
// RUN: not %clang -c -x c %s -MJ %s/non-existant -no-canonical-prefixes 2>&1 | FileCheck --check-prefix=ERROR %s
2+
// RUN: %clang -fintegrated-as -MD -MP --sysroot=somewhere -c -x c %s -xc++ %s -Wall -MJ - 2>&1 | FileCheck %s
3+
// RUN: not %clang -c -x c %s -MJ %s/non-existant 2>&1 | FileCheck --check-prefix=ERROR %s
44

55
// CHECK: { "directory": "{{[^"]*}}workdir", "file": "[[SRC:[^"]+[/|\\]compilation_database.c]]", "output": "compilation_database.o", "arguments": ["{{[^"]*}}clang{{[^"]*}}", "-xc", "[[SRC]]", "-fintegrated-as", "--sysroot=somewhere", "-c", "-Wall",{{.*}} "--target={{[^"]+}}"]},
66
// CHECK: { "directory": "{{.*}}", "file": "[[SRC:[^"]+[/|\\]compilation_database.c]]", "output": "compilation_database.o", "arguments": ["{{[^"]*}}clang{{[^"]*}}", "-xc++", "[[SRC]]", "-fintegrated-as", "--sysroot=somewhere", "-c", "-Wall",{{.*}} "--target={{[^"]+}}"]},

clang/test/Driver/compiler-rt-unwind.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
11
// General tests that the driver handles combinations of --rtlib=XXX and
22
// --unwindlib=XXX properly.
33
//
4-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
4+
// RUN: %clang -### %s 2>&1 \
55
// RUN: --target=x86_64-unknown-linux -rtlib=libgcc --unwindlib=platform \
66
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
77
// RUN: | FileCheck --check-prefix=RTLIB-GCC %s
88
// RTLIB-GCC: "{{.*}}lgcc"
99
// RTLIB-GCC: "{{.*}}lgcc_s"
1010
//
11-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
11+
// RUN: %clang -### %s 2>&1 \
1212
// RUN: --target=x86_64-unknown-linux -rtlib=libgcc --unwindlib=libunwind \
1313
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
1414
// RUN: | FileCheck --check-prefix=RTLIB-GCC-UNWINDLIB-COMPILER-RT %s
1515
// RTLIB-GCC-UNWINDLIB-COMPILER-RT: "{{.*}}lgcc"
1616
// RTLIB-GCC-UNWINDLIB-COMPILER-RT: "{{.*}}l:libunwind.so"
1717
//
18-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
18+
// RUN: %clang -### %s 2>&1 \
1919
// RUN: --target=x86_64-unknown-linux -rtlib=libgcc --unwindlib=libunwind \
2020
// RUN: -static-libgcc \
2121
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
2222
// RUN: | FileCheck --check-prefix=RTLIB-GCC-STATIC-UNWINDLIB-COMPILER-RT %s
2323
// RTLIB-GCC-STATIC-UNWINDLIB-COMPILER-RT: "{{.*}}lgcc"
2424
// RTLIB-GCC-STATIC-UNWINDLIB-COMPILER-RT: "{{.*}}l:libunwind.a"
2525
//
26-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
26+
// RUN: %clang -### %s 2>&1 \
2727
// RUN: --target=x86_64-unknown-linux -rtlib=compiler-rt \
2828
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
2929
// RUN: | FileCheck --check-prefix=RTLIB-COMPILER-RT %s
3030
// RTLIB-COMPILER-RT: "{{.*}}libclang_rt.builtins-x86_64.a"
3131
//
32-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
32+
// RUN: %clang -### %s 2>&1 \
3333
// RUN: --target=x86_64-unknown-linux -rtlib=compiler-rt --unwindlib=libgcc \
3434
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
3535
// RUN: | FileCheck --check-prefix=RTLIB-COMPILER-RT-UNWINDLIB-GCC %s
3636
// RTLIB-COMPILER-RT-UNWINDLIB-GCC: "{{.*}}libclang_rt.builtins-x86_64.a"
3737
// RTLIB-COMPILER-RT-UNWINDLIB-GCC: "{{.*}}lgcc_s"
3838
//
39-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
39+
// RUN: %clang -### %s 2>&1 \
4040
// RUN: --target=x86_64-unknown-linux -rtlib=compiler-rt --unwindlib=libgcc \
4141
// RUN: -static --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
4242
// RUN: | FileCheck --check-prefix=RTLIB-COMPILER-RT-UNWINDLIB-GCC-STATIC %s
4343
// RTLIB-COMPILER-RT-UNWINDLIB-GCC-STATIC: "{{.*}}libclang_rt.builtins-x86_64.a"
4444
// RTLIB-COMPILER-RT-UNWINDLIB-GCC-STATIC: "{{.*}}lgcc_eh"
4545
//
46-
// RUN: not %clang -no-canonical-prefixes %s -o %t.o 2> %t.err \
46+
// RUN: not %clang %s 2> %t.err \
4747
// RUN: --target=x86_64-unknown-linux -rtlib=libgcc --unwindlib=libunwind \
4848
// RUN: --gcc-toolchain="" -resource-dir=%S/Inputs/resource_dir \
4949
// RUN: FileCheck --input-file=%t.err --check-prefix=RTLIB-GCC-UNWINDLIB-COMPILER_RT %s
5050
// RTLIB-GCC-UNWINDLIB-COMPILER_RT: "{{[.|\\\n]*}}--rtlib=libgcc requires --unwindlib=libgcc"
5151
//
52-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
52+
// RUN: %clang -### %s 2>&1 \
5353
// RUN: --target=x86_64-w64-mingw32 -rtlib=compiler-rt --unwindlib=libunwind \
5454
// RUN: -shared-libgcc \
5555
// RUN: --gcc-toolchain="" \
5656
// RUN: | FileCheck --check-prefix=MINGW-RTLIB-COMPILER-RT-SHARED-UNWINDLIB-COMPILER-RT %s
5757
// MINGW-RTLIB-COMPILER-RT-SHARED-UNWINDLIB-COMPILER-RT: "{{.*}}libclang_rt.builtins-x86_64.a"
5858
// MINGW-RTLIB-COMPILER-RT-SHARED-UNWINDLIB-COMPILER-RT: "{{.*}}l:libunwind.dll.a"
5959
//
60-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
60+
// RUN: %clang -### %s 2>&1 \
6161
// RUN: --target=x86_64-w64-mingw32 -rtlib=compiler-rt --unwindlib=libunwind \
6262
// RUN: -static-libgcc \
6363
// RUN: --gcc-toolchain="" \
6464
// RUN: | FileCheck --check-prefix=MINGW-RTLIB-COMPILER-RT-STATIC-UNWINDLIB-COMPILER-RT %s
6565
// MINGW-RTLIB-COMPILER-RT-STATIC-UNWINDLIB-COMPILER-RT: "{{.*}}libclang_rt.builtins-x86_64.a"
6666
// MINGW-RTLIB-COMPILER-RT-STATIC-UNWINDLIB-COMPILER-RT: "{{.*}}l:libunwind.a"
6767
//
68-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
68+
// RUN: %clang -### %s 2>&1 \
6969
// RUN: --target=x86_64-w64-mingw32 -rtlib=compiler-rt --unwindlib=libunwind \
7070
// RUN: --gcc-toolchain="" \
7171
// RUN: | FileCheck --check-prefix=MINGW-RTLIB-COMPILER-RT-UNWINDLIB-COMPILER-RT %s
72-
// RUN: %clangxx -no-canonical-prefixes %s -### -o %t.o 2>&1 \
72+
// RUN: %clangxx -### %s 2>&1 \
7373
// RUN: --target=x86_64-w64-mingw32 -rtlib=compiler-rt --unwindlib=libunwind \
7474
// RUN: --gcc-toolchain="" \
7575
// RUN: | FileCheck --check-prefix=MINGW-RTLIB-COMPILER-RT-UNWINDLIB-COMPILER-RT %s

clang/test/Driver/config-file3.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// RUN: echo "@subdir/cfg-s2" > %t/workdir/cfg-1
1010
// RUN: echo "-Wundefined-var-template" > %t/workdir/subdir/cfg-s2
1111
//
12-
// RUN: ( cd %t && %clang --config workdir/cfg-1 -c %s -### 2>&1 | FileCheck %s -check-prefix CHECK-REL )
12+
// RUN: ( cd %t && %clang --config workdir/cfg-1 -c -### %s 2>&1 | FileCheck %s -check-prefix CHECK-REL )
1313
//
1414
// CHECK-REL: Configuration file: {{.*}}/workdir/cfg-1
1515
// CHECK-REL: -Wundefined-var-template
@@ -21,7 +21,7 @@
2121
// RUN: ln -s %clang %t/testdmode/qqq-clang-g++
2222
// RUN: echo "-Wundefined-func-template" > %t/testdmode/qqq-clang-g++.cfg
2323
// RUN: echo "-Werror" > %t/testdmode/qqq.cfg
24-
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir= -c -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix FULL-NAME
24+
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir= -c -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix FULL-NAME
2525
//
2626
// FULL-NAME: Configuration file: {{.*}}/testdmode/qqq-clang-g++.cfg
2727
// FULL-NAME: -Wundefined-func-template
@@ -31,20 +31,20 @@
3131
// (As the clang executable and symlink are in different directories, this
3232
// requires specifying the path via --config-*-dir= though.)
3333
//
34-
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir=%t/testdmode -c %s -### 2>&1 | FileCheck %s -check-prefix SYMLINK
34+
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir=%t/testdmode -c -### %s 2>&1 | FileCheck %s -check-prefix SYMLINK
3535
//
3636
// SYMLINK: Configuration file: {{.*}}/testdmode/qqq-clang-g++.cfg
3737
//
3838
//--- File specified by --config overrides config inferred from clang executable.
3939
//
40-
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir=%S/Inputs/config --config-user-dir= --config i386-qqq -c -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-EXPLICIT
40+
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir=%S/Inputs/config --config-user-dir= --config i386-qqq -c -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-EXPLICIT
4141
//
4242
// CHECK-EXPLICIT: Configuration file: {{.*}}/Inputs/config/i386-qqq.cfg
4343
//
4444
//--- Invocation qqq-clang-g++ tries to find config file qqq.cfg if qqq-clang-g++.cfg is not found.
4545
//
4646
// RUN: rm %t/testdmode/qqq-clang-g++.cfg
47-
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir= -c -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix SHORT-NAME
47+
// RUN: %t/testdmode/qqq-clang-g++ --config-system-dir= --config-user-dir= -c -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix SHORT-NAME
4848
//
4949
// SHORT-NAME: Configuration file: {{.*}}/testdmode/qqq.cfg
5050
// SHORT-NAME: -Werror
@@ -56,7 +56,7 @@
5656
// RUN: mkdir %t/testbin
5757
// RUN: ln -s %clang %t/testbin/clang
5858
// RUN: echo "-Werror" > %t/testbin/aaa.cfg
59-
// RUN: %t/testbin/clang --config-system-dir= --config-user-dir= --config aaa.cfg -c -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-BIN
59+
// RUN: %t/testbin/clang --config-system-dir= --config-user-dir= --config aaa.cfg -c -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-BIN
6060
//
6161
// CHECK-BIN: Configuration file: {{.*}}/testbin/aaa.cfg
6262
// CHECK-BIN: -Werror
@@ -71,32 +71,32 @@
7171
// RUN: ln -s %clang %t/testreload/x86_64-clang-g++
7272
// RUN: echo "-Wundefined-func-template" > %t/testreload/i386-clang-g++.cfg
7373
// RUN: echo "-Werror" > %t/testreload/i386.cfg
74-
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir= --config-user-dir= -c -m32 -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD
74+
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir= --config-user-dir= -c -m32 -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD
7575
//
7676
// CHECK-RELOAD: Configuration file: {{.*}}/testreload/i386-clang-g++.cfg
7777
// CHECK-RELOAD: -Wundefined-func-template
7878
// CHECK-RELOAD-NOT: -Werror
7979

8080
//--- If config file is specified by --config and its name does not start with architecture, it is used without reloading.
8181
//
82-
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs --config-user-dir= --config config-3 -c -m32 -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1a
82+
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs --config-user-dir= --config config-3 -c -m32 -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1a
8383
//
8484
// CHECK-RELOAD1a: Configuration file: {{.*}}/Inputs/config-3.cfg
8585
//
86-
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs --config-user-dir= --config config-3 -c -target i386 -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1b
86+
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs --config-user-dir= --config config-3 -c --target=i386 -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1b
8787
//
8888
// CHECK-RELOAD1b: Configuration file: {{.*}}/Inputs/config-3.cfg
8989

9090
//--- If config file is specified by --config and its name starts with architecture, it is reloaded.
9191
//
92-
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs/config --config-user-dir= --config x86_64-qqq -c -m32 -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1c
92+
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir=%S/Inputs/config --config-user-dir= --config x86_64-qqq -c -m32 -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1c
9393
//
9494
// CHECK-RELOAD1c: Configuration file: {{.*}}/Inputs/config/i386-qqq.cfg
9595

9696
//--- x86_64-clang-g++ tries to find config i386.cfg if i386-clang-g++.cfg is not found.
9797
//
9898
// RUN: rm %t/testreload/i386-clang-g++.cfg
99-
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir= --config-user-dir= -c -m32 -no-canonical-prefixes %s -### 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1d
99+
// RUN: %t/testreload/x86_64-clang-g++ --config-system-dir= --config-user-dir= -c -m32 -no-canonical-prefixes -### %s 2>&1 | FileCheck %s -check-prefix CHECK-RELOAD1d
100100
//
101101
// CHECK-RELOAD1d: Configuration file: {{.*}}/testreload/i386.cfg
102102
// CHECK-RELOAD1d: -Werror

0 commit comments

Comments
 (0)