[compiler-rt] r251931 - Fix r251928 build error

Martell Malone via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 3 08:04:28 PST 2015


Author: martell
Date: Tue Nov  3 10:04:28 2015
New Revision: 251931

URL: http://llvm.org/viewvc/llvm-project?rev=251931&view=rev
Log:
Fix r251928 build error

Modified:
    compiler-rt/trunk/lib/builtins/CMakeLists.txt

Modified: compiler-rt/trunk/lib/builtins/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/CMakeLists.txt?rev=251931&r1=251930&r2=251931&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/builtins/CMakeLists.txt Tue Nov  3 10:04:28 2015
@@ -176,7 +176,7 @@ if (NOT MSVC)
   if (WIN32)
     set(x86_64_SOURCES
         ${x86_64_SOURCES}
-        x86_64/chkstk.S)
+        x86_64/chkstk.S
         x86_64/chkstk2.S)
   endif()
 
@@ -200,7 +200,7 @@ if (NOT MSVC)
   if (WIN32)
     set(i386_SOURCES
         ${i386_SOURCES}
-        i386/chkstk.S)
+        i386/chkstk.S
         i386/chkstk2.S)
   endif()
 




More information about the llvm-commits mailing list