aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/math/m_debug_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib/src/mesa/math/m_debug_util.h')
-rw-r--r--mesalib/src/mesa/math/m_debug_util.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/mesalib/src/mesa/math/m_debug_util.h b/mesalib/src/mesa/math/m_debug_util.h
index d526e9656..d05da8994 100644
--- a/mesalib/src/mesa/math/m_debug_util.h
+++ b/mesalib/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