1 // Note: %s must be preceded by --, otherwise it may be interpreted as a
2 // command-line option, e.g. on Mac where %s is commonly under /Users.
7 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=c %s
10 // RUN: not %clang_cl /C -### -- %s 2>&1 | FileCheck -check-prefix=C %s
11 // C: error: invalid argument '/C' only allowed with '/E, /P or /EP'
13 // RUN: %clang_cl /C /P -### -- %s 2>&1 | FileCheck -check-prefix=C_P %s
17 // RUN: %clang_cl /d1reportAllClassLayout -### /c /WX -- %s 2>&1 | \
18 // RUN: FileCheck -check-prefix=d1reportAllClassLayout %s
19 // d1reportAllClassLayout-NOT: warning:
20 // d1reportAllClassLayout-NOT: error:
21 // d1reportAllClassLayout: -fdump-record-layouts
23 // RUN: %clang_cl /Dfoo=bar /D bar=baz /DMYDEF#value /DMYDEF2=foo#bar /DMYDEF3#a=b /DMYDEF4# \
24 // RUN: -### -- %s 2>&1 | FileCheck -check-prefix=D %s
27 // D: "-D" "MYDEF=value"
28 // D: "-D" "MYDEF2=foo#bar"
29 // D: "-D" "MYDEF3=a=b"
32 // RUN: %clang_cl /E -### -- %s 2>&1 | FileCheck -check-prefix=E %s
36 // RUN: %clang_cl /EP -### -- %s 2>&1 | FileCheck -check-prefix=EP %s
41 // RUN: %clang_cl /external:Ipath -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_I %s
42 // RUN: %clang_cl /external:I path -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_I %s
43 // EXTERNAL_I: "-isystem" "path"
45 // RUN: %clang_cl /fp:fast /fp:except -### -- %s 2>&1 | FileCheck -check-prefix=fpexcept %s
46 // fpexcept-NOT: -funsafe-math-optimizations
47 // fpexcept: -ffp-exception-behavior=strict
49 // RUN: %clang_cl /fp:fast /fp:except /fp:except- -### -- %s 2>&1 | FileCheck -check-prefix=fpexcept_ %s
50 // fpexcept_: -funsafe-math-optimizations
51 // fpexcept_: -ffp-exception-behavior=ignore
53 // RUN: %clang_cl /fp:precise /fp:fast -### -- %s 2>&1 | FileCheck -check-prefix=fpfast %s
54 // fpfast: -funsafe-math-optimizations
55 // fpfast: -ffast-math
57 // RUN: %clang_cl /fp:fast /fp:precise -### -- %s 2>&1 | FileCheck -check-prefix=fpprecise %s
58 // fpprecise-NOT: -funsafe-math-optimizations
59 // fpprecise-NOT: -ffast-math
61 // RUN: %clang_cl /fp:fast /fp:strict -### -- %s 2>&1 | FileCheck -check-prefix=fpstrict %s
62 // fpstrict-NOT: -funsafe-math-optimizations
63 // fpstrict-NOT: -ffast-math
64 // fpstrict: -ffp-contract=off
66 // RUN: %clang_cl /fp:strict /fp:contract -### -- %s 2>&1 | FileCheck -check-prefix=fpcontract %s
67 // fpcontract: -ffp-contract=on
69 // RUN: %clang_cl /fsanitize=address -### -- %s 2>&1 | FileCheck -check-prefix=fsanitize_address %s
70 // fsanitize_address: -fsanitize=address
72 // RUN: %clang_cl -### /FA -fprofile-instr-generate -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-INSTR-GENERATE %s
73 // RUN: %clang_cl -### /FA -fprofile-instr-generate=/tmp/somefile.profraw -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-INSTR-GENERATE-FILE %s
74 // RUN: %clang_cl -### /FAcsu -fprofile-instr-generate -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-INSTR-GENERATE %s
75 // RUN: %clang_cl -### /FAcsu -fprofile-instr-generate=/tmp/somefile.profraw -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-INSTR-GENERATE-FILE %s
76 // CHECK-PROFILE-INSTR-GENERATE: "-fprofile-instrument=clang" "--dependent-lib=clang_rt.profile{{[^"]*}}.lib"
77 // CHECK-PROFILE-INSTR-GENERATE-FILE: "-fprofile-instrument-path=/tmp/somefile.profraw"
79 // RUN: %clang_cl -### /FA -fprofile-generate -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-GENERATE %s
80 // RUN: %clang_cl -### /FAcsu -fprofile-generate -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-GENERATE %s
81 // CHECK-PROFILE-GENERATE: "-fprofile-instrument=llvm" "--dependent-lib=clang_rt.profile{{[^"]*}}.lib"
83 // RUN: not %clang_cl -### /FA -fprofile-instr-generate -fprofile-instr-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MIX-GEN-USE %s
84 // RUN: not %clang_cl -### /FA -fprofile-instr-generate -fprofile-instr-use=file -- %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MIX-GEN-USE %s
85 // RUN: not %clang_cl -### /FAcsu -fprofile-instr-generate -fprofile-instr-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MIX-GEN-USE %s
86 // RUN: not %clang_cl -### /FAcsu -fprofile-instr-generate -fprofile-instr-use=file -- %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MIX-GEN-USE %s
87 // CHECK-NO-MIX-GEN-USE: '{{[a-z=-]*}}' not allowed with '{{[a-z=-]*}}'
89 // RUN: %clang_cl -### /FA -fprofile-instr-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE %s
90 // RUN: %clang_cl -### /FA -fprofile-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE %s
91 // RUN: %clang_cl -### /FA -fprofile-instr-use=/tmp/somefile.prof -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE-FILE %s
92 // RUN: %clang_cl -### /FA -fprofile-use=/tmp/somefile.prof -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE-FILE %s
93 // RUN: %clang_cl -### /FAcsu -fprofile-instr-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE %s
94 // RUN: %clang_cl -### /FAcsu -fprofile-use -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE %s
95 // RUN: %clang_cl -### /FAcsu -fprofile-instr-use=/tmp/somefile.prof -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE-FILE %s
96 // RUN: %clang_cl -### /FAcsu -fprofile-use=/tmp/somefile.prof -- %s 2>&1 | FileCheck -check-prefix=CHECK-PROFILE-USE-FILE %s
97 // CHECK-PROFILE-USE: "-fprofile-instrument-use-path=default.profdata"
98 // CHECK-PROFILE-USE-FILE: "-fprofile-instrument-use-path=/tmp/somefile.prof"
100 // RUN: %clang_cl /GA -### -- %s 2>&1 | FileCheck -check-prefix=GA %s
101 // GA: -ftls-model=local-exec
103 // RTTI is on by default; just check that we don't error.
104 // RUN: %clang_cl /Zs /GR -- %s 2>&1
106 // RUN: %clang_cl /GR- -### -- %s 2>&1 | FileCheck -check-prefix=GR_ %s
109 // Security Buffer Check is on by default.
110 // RUN: %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=GS-default %s
111 // GS-default: "-stack-protector" "2"
113 // RUN: %clang_cl /GS -### -- %s 2>&1 | FileCheck -check-prefix=GS %s
114 // GS: "-stack-protector" "2"
116 // RUN: %clang_cl /GS- -### -- %s 2>&1 | FileCheck -check-prefix=GS_ %s
117 // GS_-NOT: -stack-protector
119 // RUN: %clang_cl /Gy -### -- %s 2>&1 | FileCheck -check-prefix=Gy %s
120 // Gy: -ffunction-sections
122 // RUN: %clang_cl /Gy /Gy- -### -- %s 2>&1 | FileCheck -check-prefix=Gy_ %s
123 // Gy_-NOT: -ffunction-sections
125 // RUN: %clang_cl /Gs -### -- %s 2>&1 | FileCheck -check-prefix=Gs %s
126 // Gs: "-mstack-probe-size=4096"
127 // RUN: %clang_cl /Gs0 -### -- %s 2>&1 | FileCheck -check-prefix=Gs0 %s
128 // Gs0: "-mstack-probe-size=0"
129 // RUN: %clang_cl /Gs4096 -### -- %s 2>&1 | FileCheck -check-prefix=Gs4096 %s
130 // Gs4096: "-mstack-probe-size=4096"
132 // RUN: %clang_cl /Gw -### -- %s 2>&1 | FileCheck -check-prefix=Gw %s
133 // Gw: -fdata-sections
135 // RUN: %clang_cl /Gw /Gw- -### -- %s 2>&1 | FileCheck -check-prefix=Gw_ %s
136 // Gw_-NOT: -fdata-sections
138 // RUN: %clang_cl /hotpatch -### -- %s 2>&1 | FileCheck -check-prefix=hotpatch %s
139 // hotpatch: -fms-hotpatch
141 // RUN: %clang_cl /Imyincludedir -### -- %s 2>&1 | FileCheck -check-prefix=SLASH_I %s
142 // RUN: %clang_cl /I myincludedir -### -- %s 2>&1 | FileCheck -check-prefix=SLASH_I %s
143 // SLASH_I: "-I" "myincludedir"
145 // RUN: %clang_cl /imsvcmyincludedir -### -- %s 2>&1 | FileCheck -check-prefix=SLASH_imsvc %s
146 // RUN: %clang_cl /imsvc myincludedir -### -- %s 2>&1 | FileCheck -check-prefix=SLASH_imsvc %s
147 // Clang's resource header directory should be first:
148 // SLASH_imsvc: "-resource-dir" "[[RESOURCE_DIR:[^"]+]]"
149 // SLASH_imsvc: "-internal-isystem" "[[RESOURCE_DIR]]{{[/\\]+}}include"
150 // SLASH_imsvc: "-internal-isystem" "myincludedir"
152 // RUN: %clang_cl /J -### -- %s 2>&1 | FileCheck -check-prefix=J %s
153 // J: -fno-signed-char
155 // RUN: %clang_cl /Ofoo -### -- %s 2>&1 | FileCheck -check-prefix=O %s
158 // RUN: %clang_cl /Ob0 -### -- %s 2>&1 | FileCheck -check-prefix=Ob0 %s
161 // RUN: %clang_cl /Ob2 -### -- %s 2>&1 | FileCheck -check-prefix=Ob2 %s
162 // RUN: %clang_cl /Odb2 -### -- %s 2>&1 | FileCheck -check-prefix=Ob2 %s
163 // RUN: %clang_cl /O2 /Ob2 -### -- %s 2>&1 | FileCheck -check-prefix=Ob2 %s
164 // Ob2-NOT: warning: argument unused during compilation: '/O2'
165 // Ob2: -finline-functions
167 // RUN: %clang_cl /Ob1 -### -- %s 2>&1 | FileCheck -check-prefix=Ob1 %s
168 // RUN: %clang_cl /Odb1 -### -- %s 2>&1 | FileCheck -check-prefix=Ob1 %s
169 // Ob1: -finline-hint-functions
171 // RUN: %clang_cl /Od -### -- %s 2>&1 | FileCheck -check-prefix=Od %s
174 // RUN: %clang_cl /Oi- /Oi -### -- %s 2>&1 | FileCheck -check-prefix=Oi %s
175 // Oi-NOT: -fno-builtin
177 // RUN: %clang_cl /Oi- -### -- %s 2>&1 | FileCheck -check-prefix=Oi_ %s
180 // RUN: %clang_cl /Os --target=i686-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Os %s
181 // RUN: %clang_cl /Os --target=x86_64-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Os %s
182 // Os: -mframe-pointer=none
185 // RUN: %clang_cl /Ot --target=i686-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Ot %s
186 // RUN: %clang_cl /Ot --target=x86_64-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Ot %s
187 // Ot: -mframe-pointer=none
190 // RUN: %clang_cl /Ox --target=i686-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Ox %s
191 // RUN: %clang_cl /Ox --target=x86_64-pc-windows-msvc -### -- %s 2>&1 | FileCheck -check-prefix=Ox %s
192 // Ox: -mframe-pointer=none
195 // RUN: %clang_cl --target=i686-pc-win32 /O2sy- -### -- %s 2>&1 | FileCheck -check-prefix=PR24003 %s
196 // PR24003: -mframe-pointer=all
199 // RUN: %clang_cl --target=i686-pc-win32 -Werror -Wno-msvc-not-found /Oy- /O2 -### -- %s 2>&1 | FileCheck -check-prefix=Oy_2 %s
200 // Oy_2: -mframe-pointer=all
203 // RUN: %clang_cl --target=aarch64-pc-windows-msvc -Werror -Wno-msvc-not-found /Oy- /O2 -### -- %s 2>&1 | FileCheck -check-prefix=Oy_aarch64 %s
204 // Oy_aarch64: -mframe-pointer=non-leaf
207 // RUN: %clang_cl --target=i686-pc-win32 -Werror -Wno-msvc-not-found /O2 /O2 -### -- %s 2>&1 | FileCheck -check-prefix=O2O2 %s
210 // RUN: %clang_cl /Zs -Werror /Oy -- %s 2>&1
212 // RUN: %clang_cl --target=i686-pc-win32 -Werror -Wno-msvc-not-found /Oy- -### -- %s 2>&1 | FileCheck -check-prefix=Oy_ %s
213 // Oy_: -mframe-pointer=all
215 // RUN: %clang_cl /Qvec -### -- %s 2>&1 | FileCheck -check-prefix=Qvec %s
216 // Qvec: -vectorize-loops
218 // RUN: %clang_cl /Qvec /Qvec- -### -- %s 2>&1 | FileCheck -check-prefix=Qvec_ %s
219 // Qvec_-NOT: -vectorize-loops
221 // RUN: %clang_cl /showIncludes -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_ %s
222 // showIncludes_: --show-includes
223 // showIncludes_: -sys-header-deps
225 // RUN: %clang_cl /showIncludes:user -### -- %s 2>&1 | FileCheck -check-prefix=showIncludesUser %s
226 // showIncludesUser: --show-includes
227 // showIncludesUser-NOT: -sys-header-deps
229 // RUN: %clang_cl /E /showIncludes -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_E %s
230 // RUN: %clang_cl /E /showIncludes:user -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_E %s
231 // RUN: %clang_cl /EP /showIncludes -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_E %s
232 // RUN: %clang_cl /E /EP /showIncludes -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_E %s
233 // RUN: %clang_cl /EP /P /showIncludes -### -- %s 2>&1 | FileCheck -check-prefix=showIncludes_E %s
234 // showIncludes_E-NOT: warning: argument unused during compilation: '--show-includes'
236 // /source-charset: should warn on everything except UTF-8.
237 // RUN: not %clang_cl /source-charset:utf-16 -### -- %s 2>&1 | FileCheck -check-prefix=source-charset-utf-16 %s
238 // source-charset-utf-16: invalid value 'utf-16' in '/source-charset:utf-16'
240 // /execution-charset: should warn on everything except UTF-8.
241 // RUN: not %clang_cl /execution-charset:utf-16 -### -- %s 2>&1 | FileCheck -check-prefix=execution-charset-utf-16 %s
242 // execution-charset-utf-16: invalid value 'utf-16' in '/execution-charset:utf-16'
244 // RUN: %clang_cl /Umymacro -### -- %s 2>&1 | FileCheck -check-prefix=U %s
245 // RUN: %clang_cl /U mymacro -### -- %s 2>&1 | FileCheck -check-prefix=U %s
248 // RUN: %clang_cl /validate-charset -### -- %s 2>&1 | FileCheck -check-prefix=validate-charset %s
249 // validate-charset: -Winvalid-source-encoding
251 // RUN: %clang_cl /validate-charset- -### -- %s 2>&1 | FileCheck -check-prefix=validate-charset_ %s
252 // validate-charset_: -Wno-invalid-source-encoding
254 // RUN: %clang_cl /vd2 -### -- %s 2>&1 | FileCheck -check-prefix=VD2 %s
255 // VD2: -vtordisp-mode=2
257 // RUN: %clang_cl /vmg -### -- %s 2>&1 | FileCheck -check-prefix=VMG %s
258 // VMG: "-fms-memptr-rep=virtual"
260 // RUN: %clang_cl /vmg /vms -### -- %s 2>&1 | FileCheck -check-prefix=VMS %s
261 // VMS: "-fms-memptr-rep=single"
263 // RUN: %clang_cl /vmg /vmm -### -- %s 2>&1 | FileCheck -check-prefix=VMM %s
264 // VMM: "-fms-memptr-rep=multiple"
266 // RUN: %clang_cl /vmg /vmv -### -- %s 2>&1 | FileCheck -check-prefix=VMV %s
267 // VMV: "-fms-memptr-rep=virtual"
269 // RUN: not %clang_cl /vmg /vmb -### -- %s 2>&1 | FileCheck -check-prefix=VMB %s
270 // VMB: '/vmg' not allowed with '/vmb'
272 // RUN: not %clang_cl /vmg /vmm /vms -### -- %s 2>&1 | FileCheck -check-prefix=VMX %s
273 // VMX: '/vms' not allowed with '/vmm'
275 // RUN: %clang_cl /volatile:iso -### -- %s 2>&1 | FileCheck -check-prefix=VOLATILE-ISO %s
276 // VOLATILE-ISO-NOT: "-fms-volatile"
278 // RUN: %clang_cl /volatile:ms -### -- %s 2>&1 | FileCheck -check-prefix=VOLATILE-MS %s
279 // VOLATILE-MS: "-fms-volatile"
281 // RUN: %clang_cl /W0 -### -- %s 2>&1 | FileCheck -check-prefix=W0 %s
284 // RUN: %clang_cl /W1 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s
285 // RUN: %clang_cl /W2 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s
286 // RUN: %clang_cl /W3 -### -- %s 2>&1 | FileCheck -check-prefix=W1 %s
287 // RUN: %clang_cl /W4 -### -- %s 2>&1 | FileCheck -check-prefix=W4 %s
288 // RUN: %clang_cl /Wall -### -- %s 2>&1 | FileCheck -check-prefix=Weverything %s
291 // Weverything: -Weverything
293 // RUN: %clang_cl /WX -Wno-msvc-not-found -### -- %s 2>&1 | FileCheck -check-prefix=WX %s
296 // RUN: %clang_cl /WX- -### -- %s 2>&1 | FileCheck -check-prefix=WX_ %s
299 // RUN: %clang_cl /w -### -- %s 2>&1 | FileCheck -check-prefix=w %s
302 // RUN: %clang_cl /Zp -### -- %s 2>&1 | FileCheck -check-prefix=ZP %s
303 // ZP: -fpack-struct=1
305 // RUN: %clang_cl /Zp2 -### -- %s 2>&1 | FileCheck -check-prefix=ZP2 %s
306 // ZP2: -fpack-struct=2
308 // RUN: %clang_cl /Zs -### -- %s 2>&1 | FileCheck -check-prefix=Zs %s
311 // RUN: %clang_cl /FIasdf.h -### -- %s 2>&1 | FileCheck -check-prefix=FI %s
312 // FI: "-include" "asdf.h"
314 // RUN: %clang_cl /FI asdf.h -### -- %s 2>&1 | FileCheck -check-prefix=FI_ %s
315 // FI_: "-include" "asdf.h"
317 // RUN: %clang_cl /TP /c -### -- %s 2>&1 | FileCheck -check-prefix=NO-GX %s
318 // NO-GX-NOT: "-fcxx-exceptions" "-fexceptions"
320 // RUN: %clang_cl /TP /c /GX -### -- %s 2>&1 | FileCheck -check-prefix=GX %s
321 // GX: "-fcxx-exceptions" "-fexceptions"
323 // RUN: %clang_cl /TP /c /GX /GX- -### -- %s 2>&1 | FileCheck -check-prefix=GX_ %s
324 // GX_-NOT: "-fcxx-exceptions" "-fexceptions"
326 // RUN: %clang_cl /d1PP -### -- %s 2>&1 | FileCheck -check-prefix=d1PP %s
329 // RUN: %clang_cl --target=i686-pc-windows-msvc /c /QIntel-jcc-erratum -### -- %s 2>&1 | FileCheck -check-prefix=jcceratum %s
330 // jcceratum: "-mllvm" "-x86-branches-within-32B-boundaries"
333 // We forward any unrecognized -W diagnostic options to cc1.
334 // RUN: %clang_cl -Wunused-pragmas -### -- %s 2>&1 | FileCheck -check-prefix=WJoined %s
336 // WJoined: "-Wunused-pragmas"
338 // We recognize -f[no-]strict-aliasing.
339 // RUN: %clang_cl -c -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTSTRICT %s
340 // DEFAULTSTRICT: "-relaxed-aliasing"
341 // RUN: %clang_cl -c -fstrict-aliasing -### -- %s 2>&1 | FileCheck -check-prefix=STRICT %s
342 // STRICT-NOT: "-relaxed-aliasing"
343 // RUN: %clang_cl -c -fno-strict-aliasing -### -- %s 2>&1 | FileCheck -check-prefix=NOSTRICT %s
344 // NOSTRICT: "-relaxed-aliasing"
346 // We recognize -f[no-]delete-null-pointer-checks.
347 // RUN: %clang_cl -c -### -- %s 2>&1 | FileCheck -check-prefix=DEFAULTNULL %s
348 // DEFAULTNULL-NOT: "-fno-delete-null-pointer-checks"
349 // RUN: %clang_cl -c -fdelete-null-pointer-checks -### -- %s 2>&1 | FileCheck -check-prefix=NULL %s
350 // NULL-NOT: "-fno-delete-null-pointer-checks"
351 // RUN: %clang_cl -c -fno-delete-null-pointer-checks -### -- %s 2>&1 | FileCheck -check-prefix=NONULL %s
352 // NONULL: "-fno-delete-null-pointer-checks"
354 // RUN: %clang_cl -c -### /std:c11 -- %s 2>&1 | FileCheck -check-prefix CHECK-C11 %s
355 // CHECK-C11: -std=c11
357 // For some warning ids, we can map from MSVC warning to Clang warning.
358 // RUN: %clang_cl -wd4005 -wd4100 -wd4910 -wd4996 -wd12345678 -### -- %s 2>&1 | FileCheck -check-prefix=Wno %s
360 // Wno: "-Wno-macro-redefined"
361 // Wno: "-Wno-unused-parameter"
362 // Wno: "-Wno-dllexport-explicit-instantiation-decl"
363 // Wno: "-Wno-deprecated-declarations"
366 // Ignored options. Check that we don't get "unused during compilation" errors.
367 // RUN: %clang_cl /c \
370 // RUN: /cgthreads4 \
371 // RUN: /cgthreads8 \
372 // RUN: /d2FastFail \
374 // RUN: /errorReport:foo \
375 // RUN: /execution-charset:utf-8 \
386 // RUN: /permissive- \
390 // RUN: /source-charset:utf-8 \
393 // RUN: /volatile:iso \
401 // RUN: -### -- %s 2>&1 | FileCheck -check-prefix=IGNORED %s
402 // IGNORED-NOT: argument unused during compilation
403 // IGNORED-NOT: no such file or directory
404 // Don't confuse /openmp- with the /o flag:
405 // IGNORED-NOT: "-o" "penmp-.obj"
407 // Ignored options and compile-only options are ignored for link jobs.
409 // RUN: %clang_cl /nologo -### -- %t.obj 2>&1 | FileCheck -check-prefix=LINKUNUSED %s
410 // RUN: %clang_cl /Dfoo -### -- %t.obj 2>&1 | FileCheck -check-prefix=LINKUNUSED %s
411 // RUN: %clang_cl /MD -### -- %t.obj 2>&1 | FileCheck -check-prefix=LINKUNUSED %s
412 // LINKUNUSED-NOT: argument unused during compilation
414 // Support ignoring warnings about unused arguments.
415 // RUN: not %clang_cl /Abracadabra -Qunused-arguments -### -- %s 2>&1 | FileCheck -check-prefix=UNUSED %s
416 // UNUSED-NOT: argument unused during compilation
418 // Unsupported but parsed options. Check that we don't error on them.
419 // (/Zs is for syntax-only)
420 // RUN: %clang_cl /Zs \
422 // RUN: /await:strict \
423 // RUN: /constexpr:depth1000 /constexpr:backtrace1000 /constexpr:steps1000 \
425 // RUN: /AI foo_does_not_exist \
429 // RUN: /d1import_no_registry \
430 // RUN: /d1nodatetime \
433 // RUN: /experimental:external \
434 // RUN: /experimental:module \
435 // RUN: /experimental:preprocessor \
436 // RUN: /exportHeader /headerName:foo \
437 // RUN: /external:anglebrackets \
438 // RUN: /external:env:var \
439 // RUN: /external:W0 \
440 // RUN: /external:W1 \
441 // RUN: /external:W2 \
442 // RUN: /external:W3 \
443 // RUN: /external:W4 \
444 // RUN: /external:templates- \
445 // RUN: /headerUnit foo.h=foo.ifc /headerUnit:quote foo.h=foo.ifc /headerUnit:angle foo.h=foo.ifc \
450 // RUN: /Fafilename \
453 // RUN: /favor:blend \
454 // RUN: /fno-sanitize-address-vcasan-lib \
457 // RUN: /FpDebug\main.pch \
481 // RUN: /homeparams \
488 // RUN: /openmp:experimental \
489 // RUN: /Qfast_transcendentals \
491 // RUN: /Qimprecise_fwaits \
493 // RUN: /Qpar-report:1 \
494 // RUN: /Qsafe_fp_loads \
496 // RUN: /Qspectre-load \
497 // RUN: /Qspectre-load-cf \
498 // RUN: /Qvec-report:2 \
499 // RUN: /reference foo=foo.ifc /reference foo.ifc \
500 // RUN: /sourceDependencies foo.json \
501 // RUN: /sourceDependencies:directives foo.json \
502 // RUN: /translateInclude \
505 // RUN: /volatile:ms \
512 // RUN: /Ycstdafx.h \
516 // RUN: /Yustdafx.h \
524 // RUN: /ZW:nostdlib \
527 // We support -Xclang for forwarding options to cc1.
528 // RUN: %clang_cl -Xclang hellocc1 -### -- %s 2>&1 | FileCheck -check-prefix=Xclang %s
530 // Xclang: "hellocc1"
532 // Files under /Users are often confused with the /U flag. (This could happen
533 // for other flags too, but this is the one people run into.)
534 // RUN: %clang_cl /c /Users/me/myfile.c -### 2>&1 | FileCheck -check-prefix=SlashU %s
535 // SlashU: warning: '/Users/me/myfile.c' treated as the '/U' option
536 // SlashU: note: use '--' to treat subsequent arguments as filenames
538 // RTTI is on by default. /GR- controls -fno-rtti-data.
539 // RUN: %clang_cl /c /GR- -### -- %s 2>&1 | FileCheck -check-prefix=NoRTTI %s
540 // NoRTTI: "-fno-rtti-data"
541 // NoRTTI-NOT: "-fno-rtti"
542 // RUN: %clang_cl /c /GR -### -- %s 2>&1 | FileCheck -check-prefix=RTTI %s
543 // RTTI-NOT: "-fno-rtti-data"
544 // RTTI-NOT: "-fno-rtti"
546 // RUN: %clang_cl /Zi /c -### -- %s 2>&1 | FileCheck -check-prefix=Zi %s
548 // Zi: "-debug-info-kind=constructor"
550 // RUN: %clang_cl /Z7 /c -### -- %s 2>&1 | FileCheck -check-prefix=Z7 %s
552 // Z7: "-debug-info-kind=constructor"
554 // RUN: %clang_cl -gline-tables-only /c -### -- %s 2>&1 | FileCheck -check-prefix=ZGMLT %s
555 // ZGMLT: "-gcodeview"
556 // ZGMLT: "-debug-info-kind=line-tables-only"
558 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=BreproDefault %s
559 // BreproDefault: "-mincremental-linker-compatible"
561 // RUN: %clang_cl /Brepro- /Brepro /c '-###' -- %s 2>&1 | FileCheck -check-prefix=Brepro %s
562 // Brepro-NOT: "-mincremental-linker-compatible"
564 // RUN: %clang_cl /Brepro /Brepro- /c '-###' -- %s 2>&1 | FileCheck -check-prefix=Brepro_ %s
565 // Brepro_: "-mincremental-linker-compatible"
567 // If We specify both /Z7 and -gdwarf we should get dwarf, not codeview.
568 // RUN: %clang_cl /Z7 -gdwarf /c -### -- %s 2>&1 | FileCheck -check-prefix=Z7_gdwarf %s
569 // RUN: %clang_cl -gdwarf /Z7 /c -### -- %s 2>&1 | FileCheck -check-prefix=Z7_gdwarf %s
570 // Z7_gdwarf-NOT: "-gcodeview"
571 // Z7_gdwarf: "-debug-info-kind=constructor"
572 // Z7_gdwarf: "-dwarf-version=
574 // RUN: %clang_cl /ZH:MD5 /c -### -- %s 2>&1 | FileCheck -check-prefix=ZH_MD5 %s
575 // ZH_MD5: "-gsrc-hash=md5"
577 // RUN: %clang_cl /ZH:SHA1 /c -### -- %s 2>&1 \
578 // RUN: | FileCheck -check-prefix=ZH_SHA1 %s
579 // ZH_SHA1: "-gsrc-hash=sha1"
581 // RUN: %clang_cl /ZH:SHA_256 /c -### -- %s 2>&1 \
582 // RUN: | FileCheck -check-prefix=ZH_SHA256 %s
583 // ZH_SHA256: "-gsrc-hash=sha256"
585 // RUN: %clang_cl -fmsc-version=1800 -TP -### -- %s 2>&1 | FileCheck -check-prefix=CXX11 %s
588 // RUN: %clang_cl -fmsc-version=1900 -TP -### -- %s 2>&1 | FileCheck -check-prefix=CXX14 %s
591 // RUN: %clang_cl -fmsc-version=1900 -TP -std:c++14 -### -- %s 2>&1 | FileCheck -check-prefix=STDCXX14 %s
592 // STDCXX14: -std=c++14
594 // RUN: %clang_cl -fmsc-version=1900 -TP -std:c++17 -### -- %s 2>&1 | FileCheck -check-prefix=STDCXX17 %s
595 // STDCXX17: -std=c++17
597 // RUN: %clang_cl -fmsc-version=1900 -TP -std:c++20 -### -- %s 2>&1 | FileCheck -check-prefix=STDCXX20 %s
598 // STDCXX20: -std=c++20
600 // RUN: %clang_cl -fmsc-version=1900 -TP -std:c++latest -### -- %s 2>&1 | FileCheck -check-prefix=STDCXXLATEST %s
601 // STDCXXLATEST: -std=c++26
603 // RUN: env CL="/Gy" %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=ENV-CL %s
604 // ENV-CL: "-ffunction-sections"
606 // RUN: env CL="/Gy" _CL_="/Gy- -- %s" %clang_cl -### 2>&1 | FileCheck -check-prefix=ENV-_CL_ %s
607 // ENV-_CL_-NOT: "-ffunction-sections"
609 // RUN: env CL="%s" _CL_="%s" not %clang --rsp-quoting=windows -c
611 // RUN: %clang_cl -### /c -flto -- %s 2>&1 | FileCheck -check-prefix=LTO %s
614 // RUN: %clang_cl -### /c -flto -fno-lto -- %s 2>&1 | FileCheck -check-prefix=LTO-NO %s
615 // LTO-NO-NOT: "-flto"
617 // RUN: %clang_cl -### /c -flto=thin -- %s 2>&1 | FileCheck -check-prefix=LTO-THIN %s
618 // LTO-THIN: -flto=thin
620 // RUN: not %clang_cl -### -Fe%t.exe -entry:main -flto -- %s 2>&1 | FileCheck -check-prefix=LTO-WITHOUT-LLD %s
621 // LTO-WITHOUT-LLD: LTO requires -fuse-ld=lld
623 // RUN: %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=NOCFGUARD %s
624 // RUN: %clang_cl /guard:cf- -### -- %s 2>&1 | FileCheck -check-prefix=NOCFGUARD %s
625 // NOCFGUARD-NOT: -cfguard
627 // RUN: %clang_cl /guard:cf -### -- %s 2>&1 | FileCheck -check-prefix=CFGUARD %s
629 // CFGUARD-NOT: -cfguard-no-checks
631 // RUN: %clang_cl /guard:cf,nochecks -### -- %s 2>&1 | FileCheck -check-prefix=CFGUARDNOCHECKS %s
632 // CFGUARDNOCHECKS: -cfguard-no-checks
634 // RUN: not %clang_cl /guard:nochecks -### -- %s 2>&1 | FileCheck -check-prefix=CFGUARDNOCHECKSINVALID %s
635 // CFGUARDNOCHECKSINVALID: invalid value 'nochecks' in '/guard:'
637 // RUN: %clang_cl -### -- %s 2>&1 | FileCheck -check-prefix=NOEHCONTGUARD %s
638 // RUN: %clang_cl /guard:ehcont- -### -- %s 2>&1 | FileCheck -check-prefix=NOEHCONTGUARD %s
639 // NOEHCONTGUARD-NOT: -ehcontguard
641 // RUN: %clang_cl /guard:ehcont -### -- %s 2>&1 | FileCheck -check-prefix=EHCONTGUARD %s
642 // EHCONTGUARD: -ehcontguard
644 // RUN: %clang_cl /guard:cf /guard:ehcont -Wall -Wno-msvc-not-found -### -- %s 2>&1 | \
645 // RUN: FileCheck -check-prefix=BOTHGUARD %s --implicit-check-not=warning:
646 // BOTHGUARD: -cfguard
647 // BOTHGUARD-SAME: -ehcontguard
648 // BOTHGUARD: -guard:cf
649 // BOTHGUARD-SAME: -guard:ehcont
651 // RUN: not %clang_cl /guard:foo -### -- %s 2>&1 | FileCheck -check-prefix=CFGUARDINVALID %s
652 // CFGUARDINVALID: invalid value 'foo' in '/guard:'
654 // Accept "core" clang options.
655 // (/Zs is for syntax-only, -Werror makes it fail hard on unknown options)
657 // RUN: --driver-mode=cl \
659 // RUN: -fcrash-diagnostics-dir=/foo \
660 // RUN: -fno-crash-diagnostics \
661 // RUN: -fno-blocks \
663 // RUN: -fno-builtin \
664 // RUN: -fno-builtin-strcpy \
665 // RUN: -fcolor-diagnostics \
666 // RUN: -fno-color-diagnostics \
667 // RUN: -fcoverage-mapping \
668 // RUN: -fno-coverage-mapping \
669 // RUN: -fdiagnostics-color \
670 // RUN: -fno-diagnostics-color \
671 // RUN: -fdebug-compilation-dir . \
672 // RUN: -fdebug-compilation-dir=. \
673 // RUN: -ffile-compilation-dir=. \
674 // RUN: -fdiagnostics-parseable-fixits \
675 // RUN: -fdiagnostics-absolute-paths \
676 // RUN: -ferror-limit=10 \
679 // RUN: -fmsc-version=1800 \
680 // RUN: -fno-strict-aliasing \
681 // RUN: -fstrict-aliasing \
682 // RUN: -fsyntax-only \
683 // RUN: -fms-compatibility \
684 // RUN: -fno-ms-compatibility \
685 // RUN: -fms-extensions \
686 // RUN: -fno-ms-extensions \
687 // RUN: -Xclang -disable-llvm-passes \
688 // RUN: -resource-dir asdf \
689 // RUN: -resource-dir=asdf \
690 // RUN: -Wunused-variable \
691 // RUN: -fmacro-backtrace-limit=0 \
692 // RUN: -fstandalone-debug \
693 // RUN: -flimit-debug-info \
695 // RUN: -fmerge-all-constants \
696 // RUN: -no-canonical-prefixes \
697 // RUN: -march=skylake \
698 // RUN: -fbracket-depth=123 \
699 // RUN: -fprofile-generate \
700 // RUN: -fprofile-generate=dir \
701 // RUN: -fno-profile-generate \
702 // RUN: -fno-profile-instr-generate \
703 // RUN: -fno-profile-instr-use \
704 // RUN: -fcs-profile-generate \
705 // RUN: -fcs-profile-generate=dir \
706 // RUN: -ftime-trace \
708 // RUN: -fno-modules \
709 // RUN: -fimplicit-module-maps \
710 // RUN: -fmodule-maps \
711 // RUN: -fmodule-name=foo \
712 // RUN: -fmodule-implementation-of \
713 // RUN: -fsystem-module \
714 // RUN: -fmodule-map-file=foo \
715 // RUN: -fmodule-file=foo \
716 // RUN: -fmodules-ignore-macro=foo \
717 // RUN: -fmodules-strict-decluse \
718 // RUN: -fmodules-decluse \
719 // RUN: -fno-modules-decluse \
720 // RUN: -fmodules-search-all \
721 // RUN: -fno-modules-search-all \
722 // RUN: -fimplicit-modules \
723 // RUN: -fno-implicit-modules \
724 // RUN: -ftrivial-auto-var-init=zero \
726 // RUN: -Werror /Zs -- %s 2>&1
728 // Accept clang options under the /clang: flag.
729 // The first test case ensures that the SLP vectorizer is on by default and that
730 // it's being turned off by the /clang:-fno-slp-vectorize flag.
732 // RUN: %clang_cl -O2 -### -- %s 2>&1 | FileCheck -check-prefix=NOCLANG %s
733 // NOCLANG: "--dependent-lib=libcmt"
734 // NOCLANG-SAME: "-vectorize-slp"
735 // NOCLANG-NOT: "--dependent-lib=msvcrt"
737 // RUN: %clang_cl -O2 -MD /clang:-fno-slp-vectorize /clang:-MD /clang:-MF /clang:my_dependency_file.dep -### -- %s 2>&1 | FileCheck -check-prefix=CLANG %s
738 // CLANG: "--dependent-lib=msvcrt"
739 // CLANG-SAME: "-dependency-file" "my_dependency_file.dep"
740 // CLANG-NOT: "--dependent-lib=libcmt"
741 // CLANG-NOT: "-vectorize-slp"
743 // Cover PR42501: clang-cl /clang: pass-through causes read-after-free with aliased options.
744 // RUN: %clang_cl /clang:-save-temps /clang:-Wl,test1,test2 -### -- %s 2>&1 | FileCheck -check-prefix=SAVETEMPS %s
745 // SAVETEMPS: "-save-temps=cwd"
746 // SAVETEMPS: "test1" "test2"
748 // Validate that the default triple is used when run an empty tools dir is specified
749 // RUN: %clang_cl -vctoolsdir "" -### -- %s 2>&1 | FileCheck %s --check-prefix VCTOOLSDIR
750 // VCTOOLSDIR: "-triple" "{{[a-zA-Z0-9_-]*}}-pc-windows-msvc19.20.0"
752 // Validate that built-in include paths are based on the supplied path
753 // RUN: %clang_cl --target=aarch64-pc-windows-msvc -vctoolsdir "/fake" -winsdkdir "/foo" -winsdkversion 10.0.12345.0 -### -- %s 2>&1 | FileCheck %s --check-prefix FAKEDIR
754 // FAKEDIR: "-internal-isystem" "/fake{{/|\\\\}}include"
755 // FAKEDIR: "-internal-isystem" "/fake{{/|\\\\}}atlmfc{{/|\\\\}}include"
756 // FAKEDIR: "-internal-isystem" "/foo{{/|\\\\}}Include{{/|\\\\}}10.0.12345.0{{/|\\\\}}ucrt"
757 // FAKEDIR: "-internal-isystem" "/foo{{/|\\\\}}Include{{/|\\\\}}10.0.12345.0{{/|\\\\}}shared"
758 // FAKEDIR: "-internal-isystem" "/foo{{/|\\\\}}Include{{/|\\\\}}10.0.12345.0{{/|\\\\}}um"
759 // FAKEDIR: "-internal-isystem" "/foo{{/|\\\\}}Include{{/|\\\\}}10.0.12345.0{{/|\\\\}}winrt"
760 // FAKEDIR: "-libpath:/fake{{/|\\\\}}lib{{/|\\\\}}
761 // FAKEDIR: "-libpath:/fake{{/|\\\\}}atlmfc{{/|\\\\}}lib{{/|\\\\}}
762 // FAKEDIR: "-libpath:/foo{{/|\\\\}}Lib{{/|\\\\}}10.0.12345.0{{/|\\\\}}ucrt
763 // FAKEDIR: "-libpath:/foo{{/|\\\\}}Lib{{/|\\\\}}10.0.12345.0{{/|\\\\}}um
765 // Accept both the -target and --target= spellings.
766 // RUN: %clang_cl --target=i686-pc-windows-msvc19.14.0 -### -- %s 2>&1 | FileCheck -check-prefix=TARGET %s
767 // RUN: %clang_cl -target i686-pc-windows-msvc19.14.0 -### -- %s 2>&1 | FileCheck -check-prefix=TARGET %s
768 // TARGET: "-triple" "i686-pc-windows-msvc19.14.0"
770 // RUN: %clang_cl /JMC /c -### -- %s 2>&1 | FileCheck %s --check-prefix JMCWARN
771 // JMCWARN: /JMC requires debug info. Use '/Zi', '/Z7' or debug options that enable debugger's stepping function; option ignored
773 // RUN: %clang_cl /JMC /c -### -- %s 2>&1 | FileCheck %s --check-prefix NOJMC
774 // RUN: %clang_cl /JMC /Z7 /JMC- /c -### -- %s 2>&1 | FileCheck %s --check-prefix NOJMC
777 // RUN: %clang_cl /JMC /Z7 /c -### -- %s 2>&1 | FileCheck %s --check-prefix JMC
780 // RUN: %clang_cl /external:W0 /c -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_W0 %s
781 // RUN: %clang_cl /external:W1 /c -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_Wn %s
782 // RUN: %clang_cl /external:W2 /c -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_Wn %s
783 // RUN: %clang_cl /external:W3 /c -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_Wn %s
784 // RUN: %clang_cl /external:W4 /c -### -- %s 2>&1 | FileCheck -check-prefix=EXTERNAL_Wn %s
785 // EXTERNAL_W0: "-Wno-system-headers"
786 // EXTERNAL_Wn: "-Wsystem-headers"
788 // RUN: %clang_cl -vctoolsdir "" /arm64EC /c -### -- %s 2>&1 | FileCheck --check-prefix=ARM64EC %s
789 // ARM64EC-NOT: /arm64EC has been overridden by specified target
790 // ARM64EC: "-triple" "arm64ec-pc-windows-msvc19.20.0"
792 // RUN: %clang_cl -vctoolsdir "" /arm64EC /c -target x86_64-pc-windows-msvc -### -- %s 2>&1 | FileCheck --check-prefix=ARM64EC_OVERRIDE %s
793 // ARM64EC_OVERRIDE: warning: /arm64EC has been overridden by specified target: x86_64-pc-windows-msvc; option ignored