summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2012-12-19 13:55:51 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2012-12-19 13:55:51 +0000
commit33660cdfbd521f39982e86844db6784848b8f5d5 (patch)
tree37cdb93718660804e6e88cafd09b6e2678444a63 /include/llvm/Transforms
parentba2d6fba0064b01c85616a9118708eba8382e388 (diff)
downloadllvm-33660cdfbd521f39982e86844db6784848b8f5d5.tar.gz
llvm-33660cdfbd521f39982e86844db6784848b8f5d5.tar.bz2
llvm-33660cdfbd521f39982e86844db6784848b8f5d5.tar.xz
[msan] Add track-origins argument to the pass constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170544 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Instrumentation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h
index cdd1e03cde..3fe7aeee9b 100644
--- a/include/llvm/Transforms/Instrumentation.h
+++ b/include/llvm/Transforms/Instrumentation.h
@@ -44,7 +44,7 @@ ModulePass *createAddressSanitizerModulePass(
bool CheckInitOrder = false, StringRef BlacklistFile = StringRef());
// Insert MemorySanitizer instrumentation (detection of uninitialized reads)
-FunctionPass *createMemorySanitizerPass();
+FunctionPass *createMemorySanitizerPass(bool TrackOrigins = false);
// Insert ThreadSanitizer (race detection) instrumentation
FunctionPass *createThreadSanitizerPass();