- Fix definition of POINTER_ALIGNMENT for 64-bit. Problem reported by Brian Hawley at mingw-w64: http://sourceforge.net/forum/forum.php?thread_id=3163052&forum_id=723797

svn path=/trunk/; revision=40801
This commit is contained in:
Stefan Ginsberg 2009-05-05 19:24:49 +00:00
parent b0dc2e2c2a
commit 80ce1c6708

View file

@ -51,7 +51,13 @@ extern "C" {
#define VOLATILE volatile
#define RESTRICTED_POINTER
#if defined(_WIN64)
#define POINTER_ALIGNMENT DECLSPEC_ALIGN(8)
#else
#define POINTER_ALIGNMENT
#endif
#define DECLSPEC_ADDRSAFE
#ifdef NONAMELESSUNION