diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-10-11 02:44:20 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-10-11 02:44:20 +0000 |
commit | d38332981fbdf88a6a9d45c46041307bcd76fec6 (patch) | |
tree | 9c27c9ed24e7b0bb176dec3ce0b7831192561c90 /llvm/lib/Passes | |
parent | c1f8e04eeefef0eb69cb4942841ef5437e3c1c75 (diff) | |
download | bcm5719-llvm-d38332981fbdf88a6a9d45c46041307bcd76fec6.tar.gz bcm5719-llvm-d38332981fbdf88a6a9d45c46041307bcd76fec6.zip |
Revert 374481 "[tsan,msan] Insert module constructors in a module pass"
CodeGen/sanitizer-module-constructor.c fails on mac and windows, see e.g.
http://lab.llvm.org:8011/builders/clang-x64-windows-msvc/builds/11424
llvm-svn: 374503
Diffstat (limited to 'llvm/lib/Passes')
-rw-r--r-- | llvm/lib/Passes/PassRegistry.def | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Passes/PassRegistry.def b/llvm/lib/Passes/PassRegistry.def index eb350cb665f..4cd05ee11f6 100644 --- a/llvm/lib/Passes/PassRegistry.def +++ b/llvm/lib/Passes/PassRegistry.def @@ -86,8 +86,6 @@ MODULE_PASS("synthetic-counts-propagation", SyntheticCountsPropagation()) MODULE_PASS("wholeprogramdevirt", WholeProgramDevirtPass(nullptr, nullptr)) MODULE_PASS("verify", VerifierPass()) MODULE_PASS("asan-module", ModuleAddressSanitizerPass(/*CompileKernel=*/false, false, true, false)) -MODULE_PASS("msan-module", MemorySanitizerPass({})) -MODULE_PASS("tsan-module", ThreadSanitizerPass()) MODULE_PASS("kasan-module", ModuleAddressSanitizerPass(/*CompileKernel=*/true, false, true, false)) MODULE_PASS("sancov-module", ModuleSanitizerCoveragePass()) MODULE_PASS("poison-checking", PoisonCheckingPass()) |