diff options
| author | Alexey Samsonov <vonosmas@gmail.com> | 2014-08-12 22:37:47 +0000 |
|---|---|---|
| committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-08-12 22:37:47 +0000 |
| commit | 5a32f79af38395d76ada5fa9949048e123832e54 (patch) | |
| tree | 35e660988ea4c3fe9a75634d91f5bd71772288b2 /compiler-rt/lib/msan/msan.cc | |
| parent | 34e2b280dafcce55973152ed8c6539e6a03ce761 (diff) | |
| download | bcm5719-llvm-5a32f79af38395d76ada5fa9949048e123832e54.tar.gz bcm5719-llvm-5a32f79af38395d76ada5fa9949048e123832e54.zip | |
[MSan] Disable coredump for 64-bit binaries.
llvm-svn: 215482
Diffstat (limited to 'compiler-rt/lib/msan/msan.cc')
| -rw-r--r-- | compiler-rt/lib/msan/msan.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/msan/msan.cc b/compiler-rt/lib/msan/msan.cc index ba1bf8c7d22..390b3b2d36b 100644 --- a/compiler-rt/lib/msan/msan.cc +++ b/compiler-rt/lib/msan/msan.cc @@ -377,6 +377,7 @@ void __msan_init() { if (MSAN_REPLACE_OPERATORS_NEW_AND_DELETE) ReplaceOperatorsNewAndDelete(); + DisableCoreDumperIfNecessary(); if (StackSizeIsUnlimited()) { VPrintf(1, "Unlimited stack, doing reexec\n"); // A reasonably large stack size. It is bigger than the usual 8Mb, because, |

