diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2013-08-07 22:47:18 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2013-08-07 22:47:18 +0000 |
commit | e5d5b0c71e8a27bc5582a6f296e65b78d40b14a5 (patch) | |
tree | 3530a2adeb1f2a43b07deaaf3d87302b51b538b0 /llvm/lib/Transforms/Instrumentation/Instrumentation.cpp | |
parent | 714e057406ed7af3f0e877bc8225942ea23ff63b (diff) | |
download | bcm5719-llvm-e5d5b0c71e8a27bc5582a6f296e65b78d40b14a5.tar.gz bcm5719-llvm-e5d5b0c71e8a27bc5582a6f296e65b78d40b14a5.zip |
DataFlowSanitizer; LLVM changes.
DataFlowSanitizer is a generalised dynamic data flow analysis.
Unlike other Sanitizer tools, this tool is not designed to detect a
specific class of bugs on its own. Instead, it provides a generic
dynamic data flow analysis framework to be used by clients to help
detect application-specific issues within their own code.
Differential Revision: http://llvm-reviews.chandlerc.com/D965
llvm-svn: 187923
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/Instrumentation.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/Instrumentation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp b/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp index 9f353967f39..94f7901fb97 100644 --- a/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp +++ b/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp @@ -30,6 +30,7 @@ void llvm::initializeInstrumentation(PassRegistry &Registry) { initializePathProfilerPass(Registry); initializeMemorySanitizerPass(Registry); initializeThreadSanitizerPass(Registry); + initializeDataFlowSanitizerPass(Registry); } /// LLVMInitializeInstrumentation - C binding for |