Remove add3() from bitops, replaced with the ones in inc_common.cl

This commit is contained in:
jsteube
2019-03-25 16:40:39 +01:00
parent ecbd4a51c8
commit 2bb594b385
4 changed files with 13 additions and 13 deletions

View File

@@ -7,16 +7,6 @@
#include "types.h"
#include "bitops.h"
u32 add3_S (const u32 a, const u32 b, const u32 c)
{
return a + b + c;
}
u32 add3 (const u32 a, const u32 b, const u32 c)
{
return add3_S (a, b, c);
}
u32 rotl32 (const u32 a, const int n)
{
#if defined (_MSC_VER)