diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2015-05-11 21:39:14 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2015-05-11 21:39:14 +0000 |
commit | 3eea677f3a10a4cbda9e3da8e05532168c750753 (patch) | |
tree | ec2d744cd4852115f6f684a1928075cb14c2109f /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 83fd486ff4266db238c2ad423caeb5f388ee07dc (diff) | |
download | llvm-3eea677f3a10a4cbda9e3da8e05532168c750753.zip llvm-3eea677f3a10a4cbda9e3da8e05532168c750753.tar.gz llvm-3eea677f3a10a4cbda9e3da8e05532168c750753.tar.bz2 |
Unify sanitizer kind representation between the driver and the rest of the compiler.
No functional change.
Differential Revision: http://reviews.llvm.org/D9618
llvm-svn: 237055
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 134e513..2b10cc8 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2835,7 +2835,7 @@ public: /// \brief Create a basic block that will call a handler function in a /// sanitizer runtime with the provided arguments, and create a conditional /// branch to it. - void EmitCheck(ArrayRef<std::pair<llvm::Value *, SanitizerKind>> Checked, + void EmitCheck(ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked, StringRef CheckName, ArrayRef<llvm::Constant *> StaticArgs, ArrayRef<llvm::Value *> DynamicArgs); |