We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178946e commit cb42c03Copy full SHA for cb42c03
lib/Option/SanitizerOptions.cpp
@@ -139,7 +139,7 @@ OptionSet<SanitizerKind> swift::parseSanitizerArgValues(
139
}
140
141
// Sanitizers are only supported on Linux or Darwin.
142
- if (!(Triple.isOSDarwin() || Triple.isOSLinux())) {
+ if (!(Triple.isOSDarwin() || Triple.isOSLinux() || Triple.isOSWindows())) {
143
SmallString<128> b;
144
Diags.diagnose(SourceLoc(), diag::error_unsupported_opt_for_target,
145
(A->getOption().getPrefixedName() +
0 commit comments