X-Git-Url: https://www.flypig.org.uk/git/?a=blobdiff_plain;f=OpenCL%2Fm10100_a3.cl;h=116a7cfab476db7978216d81d1e772bab8789f61;hb=518fcb387a84ef012cf1f4dd7389761e32b3e27f;hp=98a8e7587b6a0fd0016563127e4cbdde7709026c;hpb=c0a38846e3223ebc404b7dd7eb0f7e64dff86fe9;p=hashcat.git diff --git a/OpenCL/m10100_a3.cl b/OpenCL/m10100_a3.cl index 98a8e75..116a7cf 100644 --- a/OpenCL/m10100_a3.cl +++ b/OpenCL/m10100_a3.cl @@ -119,10 +119,10 @@ void m10100m (u32 w[16], const u32 pw_len, __global pw_t *pws, __global kernel_r const u32x a = l32_from_64 (v); const u32x b = h32_from_64 (v); - const u32x c = 0; - const u32x d = 0; - COMPARE_M_SIMD (a, b, c, d); + const u32x z = 0; + + COMPARE_M_SIMD (a, b, z, z); } } @@ -161,8 +161,8 @@ void m10100s (u32 w[16], const u32 pw_len, __global pw_t *pws, __global kernel_r { digests_buf[digests_offset].digest_buf[DGST_R0], digests_buf[digests_offset].digest_buf[DGST_R1], - digests_buf[digests_offset].digest_buf[DGST_R2], - digests_buf[digests_offset].digest_buf[DGST_R3] + 0, + 0 }; /** @@ -221,10 +221,10 @@ void m10100s (u32 w[16], const u32 pw_len, __global pw_t *pws, __global kernel_r const u32x a = l32_from_64 (v); const u32x b = h32_from_64 (v); - const u32x c = 0; - const u32x d = 0; - COMPARE_S_SIMD (a, b, c, d); + const u32x z = 0; + + COMPARE_S_SIMD (a, b, z, z); } }