[llvm-commits] [llvm] r82552 - /llvm/trunk/lib/System/Win32/Signals.inc

Daniel Dunbar daniel at zuster.org
Tue Sep 22 09:10:36 PDT 2009


Author: ddunbar
Date: Tue Sep 22 11:10:35 2009
New Revision: 82552

URL: http://llvm.org/viewvc/llvm-project?rev=82552&view=rev
Log:
.. missed hiding a variable for MSVC only.

Modified:
    llvm/trunk/lib/System/Win32/Signals.inc

Modified: llvm/trunk/lib/System/Win32/Signals.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Win32/Signals.inc?rev=82552&r1=82551&r2=82552&view=diff

==============================================================================
--- llvm/trunk/lib/System/Win32/Signals.inc (original)
+++ llvm/trunk/lib/System/Win32/Signals.inc Tue Sep 22 11:10:35 2009
@@ -43,7 +43,9 @@
 static std::vector<std::pair<void(*)(void*), void*> > *CallBacksToRun = 0;
 static bool RegisteredUnhandledExceptionFilter = false;
 static bool CleanupExecuted = false;
+#ifdef _MSC_VER
 static bool ExitOnUnhandledExceptions = false;
+#endif
 static PTOP_LEVEL_EXCEPTION_FILTER OldFilter = NULL;
 
 // Windows creates a new thread to execute the console handler when an event





More information about the llvm-commits mailing list