Title: [204769] trunk/Source/_javascript_Core
Revision
204769
Author
[email protected]
Date
2016-08-23 00:07:19 -0700 (Tue, 23 Aug 2016)

Log Message

[Win] Warning fix.
https://bugs.webkit.org/show_bug.cgi?id=161043

Reviewed by Mark Lam.

Ignore warning about bit shift by too large amount.

* jit/PCToCodeOriginMap.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (204768 => 204769)


--- trunk/Source/_javascript_Core/ChangeLog	2016-08-23 06:59:19 UTC (rev 204768)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-08-23 07:07:19 UTC (rev 204769)
@@ -1,3 +1,14 @@
+2016-08-22  Per Arne Vollan  <[email protected]>
+
+        [Win] Warning fix.
+        https://bugs.webkit.org/show_bug.cgi?id=161043
+
+        Reviewed by Mark Lam.
+
+        Ignore warning about bit shift by too large amount.
+
+        * jit/PCToCodeOriginMap.cpp:
+
 2016-08-22  Keith Miller  <[email protected]>
 
         Actually enable the WASM build.

Modified: trunk/Source/_javascript_Core/jit/PCToCodeOriginMap.cpp (204768 => 204769)


--- trunk/Source/_javascript_Core/jit/PCToCodeOriginMap.cpp	2016-08-23 06:59:19 UTC (rev 204768)
+++ trunk/Source/_javascript_Core/jit/PCToCodeOriginMap.cpp	2016-08-23 07:07:19 UTC (rev 204769)
@@ -32,6 +32,11 @@
 #include "DFGNode.h"
 #include "LinkBuffer.h"
 
+#if COMPILER(MSVC)
+// See https://msdn.microsoft.com/en-us/library/4wz07268.aspx
+#pragma warning(disable: 4333)
+#endif
+
 namespace JSC {
 
 namespace {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to