diff options
author | Will Dietz <wdietz2@illinois.edu> | 2013-01-18 11:30:38 +0000 |
---|---|---|
committer | Will Dietz <wdietz2@illinois.edu> | 2013-01-18 11:30:38 +0000 |
commit | f54319c891d806e410ac09caac35462cf95b8cce (patch) | |
tree | 195d8af1cea50e7be3e52d45a6c116ed7c578ef3 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 63c36bbe5e0ae8d64df8c2a3be6c0b072febdc9a (diff) | |
download | bcm5719-llvm-f54319c891d806e410ac09caac35462cf95b8cce.tar.gz bcm5719-llvm-f54319c891d806e410ac09caac35462cf95b8cce.zip |
[ubsan] Add support for -fsanitize-blacklist
llvm-svn: 172808
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 61122666a18..afe99381ae3 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -598,6 +598,9 @@ public: /// calls to EmitTypeCheck can be skipped. bool SanitizePerformTypeCheck; + /// \brief Sanitizer options to use for this function. + const SanitizerOptions *SanOpts; + /// In ARC, whether we should autorelease the return value. bool AutoreleaseResult; @@ -800,7 +803,7 @@ public: protected: CodeGenFunction& CGF; - + public: /// \brief Enter a new cleanup scope. explicit RunCleanupsScope(CodeGenFunction &CGF) |