diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-08 10:48:56 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-08 10:48:56 +0100 |
| commit | 41d6b7aea5f1c9abddf5377dc6f37d8d197e548b (patch) | |
| tree | d573235ae68f2bcd8c1b5d95326e8b601163a675 /cube.h | |
| parent | 61ae2bd88751a291f97e6f0ee36563e898cacac8 (diff) | |
| download | nissy-core-41d6b7aea5f1c9abddf5377dc6f37d8d197e548b.tar.gz nissy-core-41d6b7aea5f1c9abddf5377dc6f37d8d197e548b.zip | |
Fixes
Diffstat (limited to '')
| -rw-r--r-- | cube.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -3,8 +3,8 @@ | |||
| 3 | typedef __m256i cube_t; | 3 | typedef __m256i cube_t; |
| 4 | #else | 4 | #else |
| 5 | typedef struct { | 5 | typedef struct { |
| 6 | uint8_t c[16]; /* Only the first 8 are used, the rest is padding */ | 6 | uint8_t c[8]; |
| 7 | uint8_t e[16]; /* Only the first 12 are used, the rest is padding */ | 7 | uint8_t e[12]; |
| 8 | } cube_t; | 8 | } cube_t; |
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
