diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2013-07-09 22:03:30 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2013-07-09 22:03:30 +0000 |
commit | 41148a8a196938835b79ebca67c097e7b6e68037 (patch) | |
tree | bed0843c5ecbba89331f4168d75ad940d731f0ca /clang/lib/CodeGen/CodeGenModule.h | |
parent | 49062a97cf8b94aed9ffe8f54605719a3c51f63c (diff) | |
download | bcm5719-llvm-41148a8a196938835b79ebca67c097e7b6e68037.tar.gz bcm5719-llvm-41148a8a196938835b79ebca67c097e7b6e68037.zip |
Apply BlackList -> SpecialCaseList rename in Clang.
Differential Revision: http://llvm-reviews.chandlerc.com/D1095
llvm-svn: 185979
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index b4e234f4a79..c2cbe99a668 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/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; } |