diff options
author | Brian Paul <[email protected]> | 2013-11-04 07:33:41 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-11-04 12:23:09 -0700 |
commit | 4e0ed59959ad38b9dd469d9924e6794c8d21abcf (patch) | |
tree | 0f080ecd6e45136d68b20a215e3812a96dd4ac2e /src/mesa/math/m_debug_util.h | |
parent | 2a1f74e7d93c8c1e7fa46784ea0bdb6c7bd47100 (diff) |
mesa: remove Watcom C support
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/math/m_debug_util.h')
-rw-r--r-- | src/mesa/math/m_debug_util.h | 2 |
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 |