From: Peter Collingbourne Date: Tue, 9 Jul 2013 22:03:30 +0000 (+0000) Subject: Apply BlackList -> SpecialCaseList rename in Clang. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a967935303e6b36dcc0490073e47fdd5a5eff93e;p=clang Apply BlackList -> SpecialCaseList rename in Clang. Differential Revision: http://llvm-reviews.chandlerc.com/D1095 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185979 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index b4e234f4a7..c2cbe99a66 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -31,7 +31,7 @@ #include "llvm/IR/CallingConv.h" #include "llvm/IR/Module.h" #include "llvm/Support/ValueHandle.h" -#include "llvm/Transforms/Utils/BlackList.h" +#include "llvm/Transforms/Utils/SpecialCaseList.h" namespace llvm { class Module; @@ -412,7 +412,7 @@ class CodeGenModule : public CodeGenTypeCache { GlobalDecl initializedGlobalDecl; - llvm::BlackList SanitizerBlacklist; + llvm::SpecialCaseList SanitizerBlacklist; const SanitizerOptions &SanOpts; @@ -970,7 +970,7 @@ public: /// annotations are emitted during finalization of the LLVM code. void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV); - const llvm::BlackList &getSanitizerBlacklist() const { + const llvm::SpecialCaseList &getSanitizerBlacklist() const { return SanitizerBlacklist; }