Remove hard-coded static keyword from OpenCL kernels

This commit is contained in:
jsteube
2019-04-13 18:46:19 +02:00
parent 27f130ea90
commit 7c6970dbdd
347 changed files with 969 additions and 959 deletions

View File

@@ -13,7 +13,7 @@
#include "inc_hash_sha512.cl"
#endif
DECLSPEC static void sha512_transform_intern (const u32x *w0, const u32x *w1, const u32x *w2, const u32x *w3, u64x *digest)
DECLSPEC void sha512_transform_intern (const u32x *w0, const u32x *w1, const u32x *w2, const u32x *w3, u64x *digest)
{
u64x w0_t = hl32_to_64 (w0[0], w0[1]);
u64x w1_t = hl32_to_64 (w0[2], w0[3]);