[llvm-commits] [PATCH] extra semicolon in lib/Support/Windows/explicit_symbols.inc

John Myers atomicdog.jwm at gmail.com
Tue Jun 14 21:48:03 PDT 2011


There is an extra semicolon which needs to be removed in order for LLVM to
compile using cmake+mingw.
Visual Studio and mingw+configure compile fine even without the change.




Index: lib/Support/Windows/explicit_symbols.inc
 ===================================================================
--- lib/Support/Windows/explicit_symbols.inc    (revision 132739)
+++ lib/Support/Windows/explicit_symbols.inc    (working copy)
@@ -2,7 +2,7 @@

 #ifdef HAVE__ALLOCA
   EXPLICIT_SYMBOL(_alloca)
-  EXPLICIT_SYMBOL2(alloca, _alloca);
+  EXPLICIT_SYMBOL2(alloca, _alloca)
 #endif
 #ifdef HAVE___ALLOCA
   EXPLICIT_SYMBOL(__alloca)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20110614/f9895b55/attachment.html>


More information about the llvm-commits mailing list