mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-04 22:02:36 +00:00
Testwise disable aligned constants
This commit is contained in:
parent
aeb570ca8b
commit
27610008cb
@ -8,10 +8,16 @@ typedef ushort u16;
|
|||||||
typedef uint u32;
|
typedef uint u32;
|
||||||
typedef ulong u64;
|
typedef ulong u64;
|
||||||
|
|
||||||
typedef u8 u8a __attribute__ ((aligned (8)));
|
//testwise disabled
|
||||||
typedef u16 u16a __attribute__ ((aligned (8)));
|
//typedef u8 u8a __attribute__ ((aligned (8)));
|
||||||
typedef u32 u32a __attribute__ ((aligned (8)));
|
//typedef u16 u16a __attribute__ ((aligned (8)));
|
||||||
typedef u64 u64a __attribute__ ((aligned (8)));
|
//typedef u32 u32a __attribute__ ((aligned (8)));
|
||||||
|
//typedef u64 u64a __attribute__ ((aligned (8)));
|
||||||
|
|
||||||
|
typedef u8 u8a;
|
||||||
|
typedef u16 u16a;
|
||||||
|
typedef u32 u32a;
|
||||||
|
typedef u64 u64a;
|
||||||
|
|
||||||
#ifndef NEW_SIMD_CODE
|
#ifndef NEW_SIMD_CODE
|
||||||
#undef VECT_SIZE
|
#undef VECT_SIZE
|
||||||
|
Loading…
Reference in New Issue
Block a user