We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca46521 commit 67d9276Copy full SHA for 67d9276
clang/include/clang/Driver/Options.td
@@ -6530,6 +6530,7 @@ def _SLASH_sdl_ : CLIgnoredFlag<"sdl-">;
6530
def _SLASH_utf8 : CLIgnoredFlag<"utf-8">,
6531
HelpText<"Set source and runtime encoding to UTF-8 (default)">;
6532
def _SLASH_w : CLIgnoredJoined<"w">;
6533
+def _SLASH_Wv_ : CLIgnoredJoined<"Wv">;
6534
def _SLASH_Zc___cplusplus : CLIgnoredFlag<"Zc:__cplusplus">;
6535
def _SLASH_Zc_auto : CLIgnoredFlag<"Zc:auto">;
6536
def _SLASH_Zc_forScope : CLIgnoredFlag<"Zc:forScope">;
clang/test/Driver/cl-options.c
@@ -396,6 +396,8 @@
396
// RUN: /volatile:iso \
397
// RUN: /w12345 \
398
// RUN: /wd1234 \
399
+// RUN: /Wv \
400
+// RUN: /Wv:17 \
401
// RUN: /Zc:__cplusplus \
402
// RUN: /Zc:auto \
403
// RUN: /Zc:forScope \
0 commit comments