summaryrefslogtreecommitdiff
path: root/src/mesa/math
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-11-04 07:33:41 -0700
committerBrian Paul <brianp@vmware.com>2013-11-04 12:23:09 -0700
commit4e0ed59959ad38b9dd469d9924e6794c8d21abcf (patch)
tree0f080ecd6e45136d68b20a215e3812a96dd4ac2e /src/mesa/math
parent2a1f74e7d93c8c1e7fa46784ea0bdb6c7bd47100 (diff)
mesa: remove Watcom C support
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_debug_util.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h
index d526e9656d9..d05da89949c 100644
--- a/src/mesa/math/m_debug_util.h
+++ b/src/mesa/math/m_debug_util.h
@@ -305,8 +305,6 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 };
# define ALIGN16(type, array) type array __attribute__ ((aligned (16)))
#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 */
#elif defined(__xlC__)
# define ALIGN16(type, array) type __align (16) array
#else