diff options
author | Zarko Todorovski <zarko@ca.ibm.com> | 2021-11-12 14:30:06 +0000 |
---|---|---|
committer | Zarko Todorovski <zarko@ca.ibm.com> | 2021-11-12 15:46:16 +0000 |
commit | 05f34ffa216975f132fa1bd4cbf8424053a19147 (patch) | |
tree | ccbd5b6e864dc54ecd099e543cfc1fd87c850c46 /clang/lib/Frontend/HeaderIncludeGen.cpp | |
parent | 99d5cbbd7e33b620f5f4725ffa04ce15d2794a14 (diff) | |
download | llvm-05f34ffa216975f132fa1bd4cbf8424053a19147.zip llvm-05f34ffa216975f132fa1bd4cbf8424053a19147.tar.gz llvm-05f34ffa216975f132fa1bd4cbf8424053a19147.tar.bz2 |
[clang] Inclusive language: change instances of blacklist/whitelist to allowlist/ignorelist
Change the error message to use ignorelist, and changed some variable and function
names in related code and test.
Reviewed By: thakis
Differential Revision: https://reviews.llvm.org/D113189
Diffstat (limited to 'clang/lib/Frontend/HeaderIncludeGen.cpp')
-rw-r--r-- | clang/lib/Frontend/HeaderIncludeGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/HeaderIncludeGen.cpp b/clang/lib/Frontend/HeaderIncludeGen.cpp index 1ee47d8..5db8792 100644 --- a/clang/lib/Frontend/HeaderIncludeGen.cpp +++ b/clang/lib/Frontend/HeaderIncludeGen.cpp @@ -119,7 +119,7 @@ void clang::AttachHeaderIncludeGen(Preprocessor &PP, // Print header info for extra headers, pretending they were discovered by // the regular preprocessor. The primary use case is to support proper // generation of Make / Ninja file dependencies for implicit includes, such - // as sanitizer blacklists. It's only important for cl.exe compatibility, + // as sanitizer ignorelists. It's only important for cl.exe compatibility, // the GNU way to generate rules is -M / -MM / -MD / -MMD. for (const auto &Header : DepOpts.ExtraDeps) PrintHeaderInfo(OutputFile, Header.first, ShowDepth, 2, MSStyle); |