From 2bf1ba801644c6549b26c9bf136ae00acfc346ab Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 6 Jun 2017 11:43:15 +0200 Subject: v1.9.12 --- 0d538227be3d9ff16e4af886cc6ab015380deefd.patch | 40 -------------------------- 1 file changed, 40 deletions(-) delete mode 100644 0d538227be3d9ff16e4af886cc6ab015380deefd.patch (limited to '0d538227be3d9ff16e4af886cc6ab015380deefd.patch') diff --git a/0d538227be3d9ff16e4af886cc6ab015380deefd.patch b/0d538227be3d9ff16e4af886cc6ab015380deefd.patch deleted file mode 100644 index 2484e1d..0000000 --- a/0d538227be3d9ff16e4af886cc6ab015380deefd.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 0d538227be3d9ff16e4af886cc6ab015380deefd Mon Sep 17 00:00:00 2001 -From: guoxinhua -Date: Sat, 27 May 2017 14:57:41 +0800 -Subject: [PATCH] add sse test - ---- - swoole_serialize.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/swoole_serialize.c b/swoole_serialize.c -index ceeccc88..5fc48617 100644 ---- a/swoole_serialize.c -+++ b/swoole_serialize.c -@@ -16,7 +16,9 @@ - - #include "php_swoole.h" - #include "swoole_serialize.h" -+#ifdef __SSE2__ - #include -+#endif - - #if PHP_MAJOR_VERSION >= 7 - #define CPINLINE sw_inline -@@ -101,7 +103,7 @@ static CPINLINE void swoole_check_size(seriaString *str, size_t len) - str->total = new_size; - } - } -- -+#ifdef __SSE2__ - void CPINLINE swoole_mini_memcpy(void *dst, const void *src, size_t len) - { - register unsigned char *dd = (unsigned char*) dst + len; -@@ -255,6 +257,7 @@ void CPINLINE swoole_memcpy_fast(void *destination, const void *source, size_t s - - // return memcpy_tiny(dst, src, size); - } -+#endif - - static CPINLINE void swoole_string_cpy(seriaString *str, void *mem, size_t len) - { -- cgit