Title: [196057] trunk/Source/_javascript_Core
Revision
196057
Author
[email protected]
Date
2016-02-03 00:48:49 -0800 (Wed, 03 Feb 2016)

Log Message

Unreviewed. Fix _javascript_Core build with B3 enabled.

Include <limits.h> for UINT_MAX.

* b3/B3StackSlot.h:
* b3/air/AirStackSlot.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (196056 => 196057)


--- trunk/Source/_javascript_Core/ChangeLog	2016-02-03 08:41:57 UTC (rev 196056)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-02-03 08:48:49 UTC (rev 196057)
@@ -1,3 +1,12 @@
+2016-02-03  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix _javascript_Core build with B3 enabled.
+
+        Include <limits.h> for UINT_MAX.
+
+        * b3/B3StackSlot.h:
+        * b3/air/AirStackSlot.h:
+
 2016-02-02  Caitlin Potter  <[email protected]>
 
         JSSymbolTableObject::deleteProperty() crashes deleting Symbols

Modified: trunk/Source/_javascript_Core/b3/B3StackSlot.h (196056 => 196057)


--- trunk/Source/_javascript_Core/b3/B3StackSlot.h	2016-02-03 08:41:57 UTC (rev 196056)
+++ trunk/Source/_javascript_Core/b3/B3StackSlot.h	2016-02-03 08:48:49 UTC (rev 196057)
@@ -29,6 +29,7 @@
 #if ENABLE(B3_JIT)
 
 #include "B3SparseCollection.h"
+#include <limits.h>
 #include <wtf/FastMalloc.h>
 #include <wtf/Noncopyable.h>
 #include <wtf/PrintStream.h>

Modified: trunk/Source/_javascript_Core/b3/air/AirStackSlot.h (196056 => 196057)


--- trunk/Source/_javascript_Core/b3/air/AirStackSlot.h	2016-02-03 08:41:57 UTC (rev 196056)
+++ trunk/Source/_javascript_Core/b3/air/AirStackSlot.h	2016-02-03 08:48:49 UTC (rev 196057)
@@ -30,6 +30,7 @@
 
 #include "AirStackSlotKind.h"
 #include "B3SparseCollection.h"
+#include <limits.h>
 #include <wtf/FastMalloc.h>
 #include <wtf/Noncopyable.h>
 #include <wtf/PrintStream.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to