[PATCH] D13629: Fix missing INITIALIZE_PASS_DEPENDENCY for AddressSanitizer
Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 20 03:15:57 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL250813: Fix missing INITIALIZE_PASS_DEPENDENCY for AddressSanitizer (authored by kfischer).
Changed prior to commit:
http://reviews.llvm.org/D13629?vs=37046&id=37844#toc
Repository:
rL LLVM
http://reviews.llvm.org/D13629
Files:
llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Index: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -737,6 +737,7 @@
"AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
false)
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
+INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
INITIALIZE_PASS_END(
AddressSanitizer, "asan",
"AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13629.37844.patch
Type: text/x-patch
Size: 629 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151020/fdb40285/attachment.bin>
More information about the llvm-commits
mailing list