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 c480887 commit e24fbd3Copy full SHA for e24fbd3
clang/lib/Driver/SanitizerArgs.cpp
@@ -690,14 +690,14 @@ SanitizerArgs::SanitizerArgs(const ToolChain &TC,
690
// default in ASan?
691
692
// Parse -f(no-)?sanitize-recover flags.
693
- SanitizerMask RecoverableKinds = parseSanitizeArgs(
694
- D, Args, DiagnoseErrors,
695
- /* Default */ RecoverableByDefault,
696
- /* AlwaysIn */ AlwaysRecoverable,
697
- /* AlwaysOut */ Unrecoverable,
698
- /* OptInID */ options::OPT_fsanitize_recover_EQ,
699
- /* OptOutID */ options::OPT_fno_sanitize_recover_EQ,
700
- /* AlwaysOutAdvisoryOnly */ false);
+ SanitizerMask RecoverableKinds =
+ parseSanitizeArgs(D, Args, DiagnoseErrors,
+ /* Default */ RecoverableByDefault,
+ /* AlwaysIn */ AlwaysRecoverable,
+ /* AlwaysOut */ Unrecoverable,
+ /* OptInID */ options::OPT_fsanitize_recover_EQ,
+ /* OptOutID */ options::OPT_fno_sanitize_recover_EQ,
+ /* AlwaysOutAdvisoryOnly */ false);
701
702
RecoverableKinds &= Kinds;
703
0 commit comments