forked from OSchip/llvm-project
[Driver] Remove deprecated -fsanitize-coverage-{black,white}list=
This commit is contained in:
parent
0bb3aafbd5
commit
29f852a151
|
@ -1007,11 +1007,11 @@ Enable control flow integrity (CFI) checks for cross-DSO calls.
|
|||
|
||||
Generalize pointers in CFI indirect call type signature checks
|
||||
|
||||
.. option:: -fsanitize-coverage-allowlist=<arg>, -fsanitize-coverage-whitelist=<arg>
|
||||
.. option:: -fsanitize-coverage-allowlist=<arg>
|
||||
|
||||
Restrict sanitizer coverage instrumentation exclusively to modules and functions that match the provided special case list, except the blocked ones
|
||||
|
||||
.. option:: -fsanitize-coverage-ignorelist=<arg>, -fsanitize-coverage-blacklist=<arg>
|
||||
.. option:: -fsanitize-coverage-ignorelist=<arg>
|
||||
|
||||
Disable sanitizer coverage instrumentation for modules and functions that match the provided special case list, even the allowed ones
|
||||
|
||||
|
|
|
@ -1675,18 +1675,11 @@ def fsanitize_coverage_allowlist : Joined<["-"], "fsanitize-coverage-allowlist="
|
|||
Group<f_clang_Group>, Flags<[CoreOption, NoXarchOption]>,
|
||||
HelpText<"Restrict sanitizer coverage instrumentation exclusively to modules and functions that match the provided special case list, except the blocked ones">,
|
||||
MarshallingInfoStringVector<CodeGenOpts<"SanitizeCoverageAllowlistFiles">>;
|
||||
def : Joined<["-"], "fsanitize-coverage-whitelist=">,
|
||||
Group<f_clang_Group>, Flags<[CoreOption, HelpHidden]>, Alias<fsanitize_coverage_allowlist>,
|
||||
HelpText<"Deprecated, use -fsanitize-coverage-allowlist= instead">;
|
||||
def fsanitize_coverage_ignorelist : Joined<["-"], "fsanitize-coverage-ignorelist=">,
|
||||
Group<f_clang_Group>, Flags<[CoreOption, NoXarchOption]>,
|
||||
HelpText<"Disable sanitizer coverage instrumentation for modules and functions "
|
||||
"that match the provided special case list, even the allowed ones">,
|
||||
MarshallingInfoStringVector<CodeGenOpts<"SanitizeCoverageIgnorelistFiles">>;
|
||||
def : Joined<["-"], "fsanitize-coverage-blacklist=">,
|
||||
Group<f_clang_Group>, Flags<[CoreOption, HelpHidden]>,
|
||||
Alias<fsanitize_coverage_ignorelist>,
|
||||
HelpText<"Deprecated, use -fsanitize-coverage-ignorelist= instead">;
|
||||
def fsanitize_memory_track_origins_EQ : Joined<["-"], "fsanitize-memory-track-origins=">,
|
||||
Group<f_clang_Group>,
|
||||
HelpText<"Enable origins tracking in MemorySanitizer">,
|
||||
|
|
Loading…
Reference in New Issue