[MINGW-W64]
authorAmine Khaldi <amine.khaldi@reactos.org>
Tue, 20 Jul 2010 13:04:56 +0000 (13:04 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Tue, 20 Jul 2010 13:04:56 +0000 (13:04 +0000)
- Group MSVC related definitions.

svn path=/trunk/; revision=48133

reactos/include/reactos/mingw-w64/sect_attribs.h

index ff58c06..6e59216 100644 (file)
@@ -4,13 +4,14 @@
  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  */
 
-#if defined (__ia64__) || defined (__x86_64)
+#if defined(_MSC_VER)
+
+#if defined(_M_IA64) || defined(_M_AMD64)
 #define _ATTRIBUTES
 #else
 #define _ATTRIBUTES shared
 #endif
 
-#if defined(_MSC_VER)
 /* Reference list of existing section for msvcrt.  */
 #pragma section(".CRTMP$XCA",long,_ATTRIBUTES)
 #pragma section(".CRTMP$XCZ",long,_ATTRIBUTES)
@@ -59,7 +60,7 @@
 #pragma section(".tls",long,read,write)
 #pragma section(".tls$AAA",long,read,write)
 #pragma section(".tls$ZZZ",long,read,write)
-#endif
+#endif /* _MSC_VER */
 
 #if defined(_MSC_VER)
 #define _CRTALLOC(x) __declspec(allocate(x))
@@ -68,3 +69,4 @@
 #else
 #error Your compiler is not supported.
 #endif
+