Remove __IBM_ATTRIBUTES
I believe this is C++ attributes, and not GCC attributespull/748/head
parent
3ba4dc6052
commit
3efc7752e4
2
config.h
2
config.h
|
|
@ -361,7 +361,7 @@ NAMESPACE_END
|
||||||
#define CRYPTOPP_ALIGN_DATA(x) __declspec(align(x))
|
#define CRYPTOPP_ALIGN_DATA(x) __declspec(align(x))
|
||||||
#elif defined(__GNUC__) || (__SUNPRO_CC >= 0x5100)
|
#elif defined(__GNUC__) || (__SUNPRO_CC >= 0x5100)
|
||||||
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
|
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
|
||||||
#elif defined(__xlc__) || defined(__xlC__) || defined(__IBM_ATTRIBUTES)
|
#elif defined(__xlc__) || defined(__xlC__)
|
||||||
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
|
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
|
||||||
#else
|
#else
|
||||||
#define CRYPTOPP_ALIGN_DATA(x)
|
#define CRYPTOPP_ALIGN_DATA(x)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue