[compiler-rt] r215482 - [MSan] Disable coredump for 64-bit binaries.

Alexey Samsonov vonosmas at gmail.com
Tue Aug 12 15:37:48 PDT 2014


Author: samsonov
Date: Tue Aug 12 17:37:47 2014
New Revision: 215482

URL: http://llvm.org/viewvc/llvm-project?rev=215482&view=rev
Log:
[MSan] Disable coredump for 64-bit binaries.

Modified:
    compiler-rt/trunk/lib/msan/msan.cc

Modified: compiler-rt/trunk/lib/msan/msan.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/msan/msan.cc?rev=215482&r1=215481&r2=215482&view=diff
==============================================================================
--- compiler-rt/trunk/lib/msan/msan.cc (original)
+++ compiler-rt/trunk/lib/msan/msan.cc Tue Aug 12 17:37:47 2014
@@ -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,





More information about the llvm-commits mailing list