Title: [228317] trunk/Source/bmalloc
- Revision
- 228317
- Author
- [email protected]
- Date
- 2018-02-09 05:37:40 -0800 (Fri, 09 Feb 2018)
Log Message
Fix build for !BCPU(X86_64) after r228306
https://bugs.webkit.org/show_bug.cgi?id=182563
Unreviewed build fix.
* bmalloc/Algorithm.h:
Modified Paths
Diff
Modified: trunk/Source/bmalloc/ChangeLog (228316 => 228317)
--- trunk/Source/bmalloc/ChangeLog 2018-02-09 12:11:10 UTC (rev 228316)
+++ trunk/Source/bmalloc/ChangeLog 2018-02-09 13:37:40 UTC (rev 228317)
@@ -1,3 +1,12 @@
+2018-02-09 Carlos Alberto Lopez Perez <[email protected]>
+
+ Fix build for !BCPU(X86_64) after r228306
+ https://bugs.webkit.org/show_bug.cgi?id=182563
+
+ Unreviewed build fix.
+
+ * bmalloc/Algorithm.h:
+
2018-02-08 Filip Pizlo <[email protected]>
Experiment with alternative implementation of memcpy/memset
Modified: trunk/Source/bmalloc/bmalloc/Algorithm.h (228316 => 228317)
--- trunk/Source/bmalloc/bmalloc/Algorithm.h 2018-02-09 12:11:10 UTC (rev 228316)
+++ trunk/Source/bmalloc/bmalloc/Algorithm.h 2018-02-09 13:37:40 UTC (rev 228317)
@@ -34,6 +34,10 @@
#include <type_traits>
#include <chrono>
+#if !BCPU(X86_64)
+#include <string.h>
+#endif
+
namespace bmalloc {
// Versions of min and max that are compatible with compile-time constants.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes