Fix PR1798 - an error in the evaluation of SCEVAddRecExpr at an
[oota-llvm.git] / lib / System / DynamicLibrary.cpp
index 8119348547c403c30ae0ac7747db330e8d059d37..a21f16ab327e71e45f68a4eb1cf35b8f882476c9 100644 (file)
@@ -2,8 +2,8 @@
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the
-// University of Illinois Open Source License. See LICENSE.TXT for details.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
 //
@@ -13,6 +13,7 @@
 
 #include "llvm/System/DynamicLibrary.h"
 #include "llvm/Config/config.h"
+#include <cstring>
 #include <map>
 
 // Collection of symbol name/value pairs to be searched prior to any libraries.
@@ -62,7 +63,7 @@ DynamicLibrary::DynamicLibrary() : handle(0) {
 
   lt_dlhandle a_handle = lt_dlopen(0);
 
-  assert(a_handle == 0 || "Can't open program as dynamic library");
+  assert(a_handle && "Can't open program as dynamic library");
 
   handle = a_handle;
   OpenedHandles.push_back(a_handle);
@@ -138,14 +139,15 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
       return ptr;
   }
 
+#define EXPLICIT_SYMBOL(SYM) \
+   extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
+
   // If this is darwin, it has some funky issues, try to solve them here.  Some
   // important symbols are marked 'private external' which doesn't allow
   // SearchForAddressOfSymbol to find them.  As such, we special case them here,
   // there is only a small handful of them.
 
 #ifdef __APPLE__
-#define EXPLICIT_SYMBOL(SYM) \
-   extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
   {
     EXPLICIT_SYMBOL(__ashldi3);
     EXPLICIT_SYMBOL(__ashrdi3);
@@ -163,9 +165,16 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
     EXPLICIT_SYMBOL(__udivdi3);
     EXPLICIT_SYMBOL(__umoddi3);
   }
-#undef EXPLICIT_SYMBOL
 #endif
 
+#ifdef __CYGWIN__
+  {
+    EXPLICIT_SYMBOL(_alloca);
+  }
+#endif
+
+#undef EXPLICIT_SYMBOL
+
 // This macro returns the address of a well-known, explicit symbol
 #define EXPLICIT_SYMBOL(SYM) \
    if (!strcmp(symbolName, #SYM)) return &SYM