From c76ff285e7edf396b4cc033f1a96155d5342d97a Mon Sep 17 00:00:00 2001 From: Matthew Barr Date: Tue, 14 Jun 2016 11:28:00 +1000 Subject: [PATCH] remove unnecessary function proto --- src/util/simd_utils.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/simd_utils.h b/src/util/simd_utils.h index 107b22af..d3dba9a3 100644 --- a/src/util/simd_utils.h +++ b/src/util/simd_utils.h @@ -149,9 +149,6 @@ static really_inline u32 diffrich64_128(m128 a, m128 b) { #endif } -// forward decl -static really_inline m128 xor128(m128 a, m128 b); - #define shift2x64(a, b) _mm_slli_epi64((a), (b)) #define rshift2x64(a, b) _mm_srli_epi64((a), (b)) #define eq128(a, b) _mm_cmpeq_epi8((a), (b))