Merge branch 'gallium-0.1' into gallium-0.2
[mesa.git] / src / mesa / math / m_debug_util.h
index 2d1d8b188055892ffd7fb5dcab05c10334b2eb07..7abe6f2565a097dea159b9f8f6991aeefdd86252 100644 (file)
@@ -303,7 +303,7 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 };
  */
 #if defined(__GNUC__)
 #  define ALIGN16(type, array) type array __attribute__ ((aligned (16)))
-#elif defined(__MSC__)
+#elif defined(_MSC_VER)
 #  define ALIGN16(type, array) type array __declspec(align(16)) /* GH: Does this work? */
 #elif defined(__WATCOMC__)
 #  define ALIGN16(type, array)                     /* Watcom does not support this */