mirror of
https://github.com/holub/mame
synced 2025-06-07 13:23:50 +03:00
rspcp2: Make the align declarations gcc-compatible [O. Galibert]
This commit is contained in:
parent
bbe1ece933
commit
0cece07db6
@ -32,6 +32,13 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if USE_SIMD
|
#if USE_SIMD
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define __align16 __declspec(align(16))
|
||||||
|
#else
|
||||||
|
#define __align16 __attribute__((aligned(16)))
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (defined(__SSE4_2__) || defined(_MSC_VER))
|
#if (defined(__SSE4_2__) || defined(_MSC_VER))
|
||||||
#include <nmmintrin.h>
|
#include <nmmintrin.h>
|
||||||
#elif (defined(__SSE4_1__) || defined(_MSC_VER))
|
#elif (defined(__SSE4_1__) || defined(_MSC_VER))
|
||||||
@ -181,7 +188,7 @@ protected:
|
|||||||
UINT32 m_vres[8]; /* used for temporary vector results */
|
UINT32 m_vres[8]; /* used for temporary vector results */
|
||||||
|
|
||||||
#if USE_SIMD
|
#if USE_SIMD
|
||||||
__declspec(align(16)) VECTOR_REG m_v[32];
|
__align16 VECTOR_REG m_v[32];
|
||||||
#else
|
#else
|
||||||
VECTOR_REG m_v[32];
|
VECTOR_REG m_v[32];
|
||||||
#endif
|
#endif
|
||||||
@ -232,9 +239,9 @@ protected:
|
|||||||
UINT16 s[24];
|
UINT16 s[24];
|
||||||
};
|
};
|
||||||
|
|
||||||
__declspec(align(16)) aligned_rsp_1vect_t m_vdqm;
|
__align16 aligned_rsp_1vect_t m_vdqm;
|
||||||
__declspec(align(16)) aligned_rsp_2vect_t m_flags[3];
|
__align16 aligned_rsp_2vect_t m_flags[3];
|
||||||
__declspec(align(16)) aligned_rsp_3vect_t m_acc;
|
__align16 aligned_rsp_3vect_t m_acc;
|
||||||
UINT32 m_dp_flag;
|
UINT32 m_dp_flag;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
Loading…
Reference in New Issue
Block a user