diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-08-12 11:48:05 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-08-12 11:48:05 +0000 |
commit | d6e043ba1f9cdab6b8036454442f301ce4f9547d (patch) | |
tree | 561e4c30732bf29155c41b0b5870c5cf06c1a395 /clang/lib/CodeGen/CodeGenModule.h | |
parent | e4b5fb88515a111ce92270e7530a35739b065c12 (diff) | |
download | bcm5719-llvm-d6e043ba1f9cdab6b8036454442f301ce4f9547d.tar.gz bcm5719-llvm-d6e043ba1f9cdab6b8036454442f301ce4f9547d.zip |
Use new llvm::SpecialCaseList API in CodeGenModule
llvm-svn: 188170
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 8e2739e3f9f..516bedfea6f 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -412,7 +412,7 @@ class CodeGenModule : public CodeGenTypeCache { GlobalDecl initializedGlobalDecl; - llvm::SpecialCaseList SanitizerBlacklist; + llvm::OwningPtr<llvm::SpecialCaseList> SanitizerBlacklist; const SanitizerOptions &SanOpts; @@ -972,7 +972,7 @@ public: void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV); const llvm::SpecialCaseList &getSanitizerBlacklist() const { - return SanitizerBlacklist; + return *SanitizerBlacklist; } const SanitizerOptions &getSanOpts() const { return SanOpts; } |