Title: [208758] trunk/Source/_javascript_Core
Revision
208758
Author
[email protected]
Date
2016-11-15 14:48:01 -0800 (Tue, 15 Nov 2016)

Log Message

Unreviewed, build fix for Windows debug build after r208738
https://bugs.webkit.org/show_bug.cgi?id=164727

This static member variable can be touched outside of the JSC project
since inlined MacroAssembler member functions read / write it.
So it should be exported.

* assembler/MacroAssemblerX86Common.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (208757 => 208758)


--- trunk/Source/_javascript_Core/ChangeLog	2016-11-15 22:25:42 UTC (rev 208757)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-11-15 22:48:01 UTC (rev 208758)
@@ -1,3 +1,14 @@
+2016-11-15  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, build fix for Windows debug build after r208738
+        https://bugs.webkit.org/show_bug.cgi?id=164727
+
+        This static member variable can be touched outside of the JSC project
+        since inlined MacroAssembler member functions read / write it.
+        So it should be exported.
+
+        * assembler/MacroAssemblerX86Common.h:
+
 2016-11-15  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: inspector/worker/debugger-pause.html fails on WebKit1

Modified: trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.h (208757 => 208758)


--- trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.h	2016-11-15 22:25:42 UTC (rev 208757)
+++ trunk/Source/_javascript_Core/assembler/MacroAssemblerX86Common.h	2016-11-15 22:48:01 UTC (rev 208758)
@@ -2934,7 +2934,7 @@
         return s_sse2CheckState == HasSSE2;
     }
     
-    static SSE2CheckState s_sse2CheckState;
+    JS_EXPORTDATA static SSE2CheckState s_sse2CheckState;
 
 #endif // OS(MAC_OS_X)
 #elif !defined(NDEBUG) // CPU(X86)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to