aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Utils
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2013-07-09 22:02:49 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2013-07-09 22:02:49 +0000
commit405515d55f470d04ef75f653b7f1994329c9066b (patch)
tree266701dc84b1075bfc75dc966c9af242a378371d /include/llvm/Transforms/Utils
parent8c5c6f0e090f91b6555cdd9d2eea238fff3befe6 (diff)
downloadexternal_llvm-405515d55f470d04ef75f653b7f1994329c9066b.zip
external_llvm-405515d55f470d04ef75f653b7f1994329c9066b.tar.gz
external_llvm-405515d55f470d04ef75f653b7f1994329c9066b.tar.bz2
Rename BlackList class to SpecialCaseList and move it to Transforms/Utils.
Differential Revision: http://llvm-reviews.chandlerc.com/D1089 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils')
-rw-r--r--include/llvm/Transforms/Utils/SpecialCaseList.h (renamed from include/llvm/Transforms/Utils/BlackList.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Transforms/Utils/BlackList.h b/include/llvm/Transforms/Utils/SpecialCaseList.h
index 316b364..42d9735 100644
--- a/include/llvm/Transforms/Utils/BlackList.h
+++ b/include/llvm/Transforms/Utils/SpecialCaseList.h
@@ -1,4 +1,4 @@
-//===-- BlackList.h - blacklist for sanitizers ------------------*- C++ -*-===//
+//===-- SpecialCaseList.h - blacklist for sanitizers ------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -39,9 +39,9 @@ class Module;
class Regex;
class StringRef;
-class BlackList {
+class SpecialCaseList {
public:
- BlackList(const StringRef Path);
+ SpecialCaseList(const StringRef Path);
// Returns whether either this function or it's source file are blacklisted.
bool isIn(const Function &F) const;
// Returns whether either this global or it's source file are blacklisted.