[PATCH] D32681: [builtins] Enabled emulated TLS on WOA.

Martell Malone via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 30 07:01:17 PDT 2017


martell updated this revision to Diff 97230.
martell added a comment.

Added diff context for readability


Repository:
  rL LLVM

https://reviews.llvm.org/D32681

Files:
  lib/builtins/CMakeLists.txt
  lib/builtins/emutls.c


Index: lib/builtins/emutls.c
===================================================================
--- lib/builtins/emutls.c
+++ lib/builtins/emutls.c
@@ -98,7 +98,7 @@
 
 #else
 
-#include <Windows.h>
+#include <windows.h>
 #include <malloc.h>
 #include <stdio.h>
 #include <assert.h>
Index: lib/builtins/CMakeLists.txt
===================================================================
--- lib/builtins/CMakeLists.txt
+++ lib/builtins/CMakeLists.txt
@@ -390,7 +390,8 @@
       udivmoddi4.c
       udivmodsi4.c
       udivsi3.c
-      umoddi3.c)
+      umoddi3.c
+      emutls.c)
 elseif(NOT WIN32)
   # TODO the EABI sources should only be added to EABI targets
   set(arm_SOURCES


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D32681.97230.patch
Type: text/x-patch
Size: 682 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170430/3cfcabc8/attachment.bin>


More information about the llvm-commits mailing list