summaryrefslogtreecommitdiff
path: root/src/mesa/math
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-06-24 14:02:24 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-06-24 14:02:24 +0900
commitb6f053739f66c1c88db12df4690051c0a54ff0f7 (patch)
tree0b4e462d0adc4099b88a8652bb8834414af9c131 /src/mesa/math
parent4802a687a7050b7b5dd3683ae43fd4f26c4a718e (diff)
mesa: Replace deprecated __MSC__ macro.
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_debug_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h
index f7ce4679b6..776c26475e 100644
--- a/src/mesa/math/m_debug_util.h
+++ b/src/mesa/math/m_debug_util.h
@@ -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 */