Tweak CrashRecoveryContext::GetCurrent() to return quickly if 'gCrsahRecoveryEnabled...
authorTed Kremenek <kremenek@apple.com>
Sat, 19 Mar 2011 00:59:33 +0000 (00:59 +0000)
committerTed Kremenek <kremenek@apple.com>
Sat, 19 Mar 2011 00:59:33 +0000 (00:59 +0000)
the performance sensitive case where we are compiling code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127928 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/CrashRecoveryContext.cpp

index e190051e6dbe1b6793da0de79c07c1d00920e773..d4e21a3a82672b82175ad91fad1b89a246079b03 100644 (file)
@@ -74,6 +74,9 @@ CrashRecoveryContext::~CrashRecoveryContext() {
 }
 
 CrashRecoveryContext *CrashRecoveryContext::GetCurrent() {
+  if (!gCrashRecoveryEnabled)
+    return 0;
+
   const CrashRecoveryContextImpl *CRCI = CurrentContext.get();
   if (!CRCI)
     return 0;