From 2a9f7e44ce1b73d3d56ef83f83e94f074ecac3f9 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Fri, 06 Apr 2018 17:34:38 +0000
Subject: [PATCH] Added automatic AVX support - speedup +20% on CPU x86_64 Intel Skylake
---
src/list.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/list.c b/src/list.c
index 948d960..0e4165d 100644
--- a/src/list.c
+++ b/src/list.c
@@ -11,6 +11,7 @@
return l;
}
+/*
void transfer_node(list *s, list *d, node *n)
{
node *prev, *next;
@@ -22,6 +23,7 @@
if(s->front == n) s->front = next;
if(s->back == n) s->back = prev;
}
+*/
void *list_pop(list *l){
if(!l->back) return 0;
--
Gitblit v1.10.0