diff options
author | Eric Christopher <echristo@gmail.com> | 2020-06-20 00:42:26 -0700 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2020-06-20 00:42:26 -0700 |
commit | 10563e16aa2c432a883695ddd714da68751bbd77 (patch) | |
tree | 57eea3e065b5548fe238e46c7cc5daa475373761 /llvm/lib/Analysis/InlineCost.cpp | |
parent | 858d38557857bb372fe0a0985c36e8636dc5c90a (diff) | |
download | llvm-10563e16aa2c432a883695ddd714da68751bbd77.zip llvm-10563e16aa2c432a883695ddd714da68751bbd77.tar.gz llvm-10563e16aa2c432a883695ddd714da68751bbd77.tar.bz2 |
[Analysis/Transforms/Sanitizers] As part of using inclusive language
within the llvm project, migrate away from the use of blacklist and
whitelist.
Diffstat (limited to 'llvm/lib/Analysis/InlineCost.cpp')
-rw-r--r-- | llvm/lib/Analysis/InlineCost.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp index ba327ca..66e8184 100644 --- a/llvm/lib/Analysis/InlineCost.cpp +++ b/llvm/lib/Analysis/InlineCost.cpp @@ -1113,7 +1113,8 @@ bool CallAnalyzer::visitCastInst(CastInst &I) { })) return true; - // Disable SROA in the face of arbitrary casts we don't whitelist elsewhere. + // Disable SROA in the face of arbitrary casts we don't explicitly list + // elsewhere. disableSROA(I.getOperand(0)); // If this is a floating-point cast, and the target says this operation |