Skip to content

Commit e66aed9

Browse files
Fix docs typo
1 parent ee0f534 commit e66aed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aarch64/aesni.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ copy(src::AESNIKey) = copyto!(AESNIKey(), src)
2929
Assistant function for AES128. Originally compiled for x86 from the C++ source code:
3030
```cpp
3131
R123_STATIC_INLINE __m128i AES_128_ASSIST (__m128i temp1, __m128i temp2) {
32-
uint64x2 temp3;
32+
__m128i temp3;
3333
temp2 = _mm_shuffle_epi32 (temp2 ,0xff);
3434
temp3 = _mm_slli_si128 (temp1, 0x4);
3535
temp1 = _mm_xor_si128 (temp1, temp3);

0 commit comments

Comments
 (0)