diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-03-22 02:06:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-03-22 02:06:32 +0000 |
commit | 07235a170596de529de18dc79b98962b55788d44 (patch) | |
tree | 3d7df27a382d2a14a5182b2bbb1c6ac4bc588ddc /lib/Support | |
parent | afc9e06021d4682d0faab2bdad57d6252dfca946 (diff) | |
download | external_llvm-07235a170596de529de18dc79b98962b55788d44.zip external_llvm-07235a170596de529de18dc79b98962b55788d44.tar.gz external_llvm-07235a170596de529de18dc79b98962b55788d44.tar.bz2 |
Temporarily stop recovering resources in CrashRecoveryContext while I investigate further why this works on my machine and not on others.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/CrashRecoveryContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/CrashRecoveryContext.cpp b/lib/Support/CrashRecoveryContext.cpp index 899c389..7c7b0e9 100644 --- a/lib/Support/CrashRecoveryContext.cpp +++ b/lib/Support/CrashRecoveryContext.cpp @@ -70,7 +70,7 @@ CrashRecoveryContext::~CrashRecoveryContext() { CrashRecoveryContextCleanup *tmp = i; i = tmp->next; tmp->cleanupFired = true; - tmp->recoverResources(); + //tmp->recoverResources(); delete tmp; } tlIsRecoveringFromCrash.erase(); |