summaryrefslogtreecommitdiff
path: root/src/glx/x11/indirect.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-10-20 21:12:35 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-10-20 21:12:35 +0000
commitc8f86105d0df2ef14c9dd9fc193f8cd40b58fc00 (patch)
tree18531607f7472da776e66a46bd4d62e7bc42e5bd /src/glx/x11/indirect.c
parent6f980dbf21893af4e7413dbb0373fb79761294c7 (diff)
Disable the FASTCALL optimization because it still breaks server-side GLX.
Diffstat (limited to 'src/glx/x11/indirect.c')
-rw-r--r--src/glx/x11/indirect.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/glx/x11/indirect.c b/src/glx/x11/indirect.c
index 2a4db6578a..35be63f36e 100644
--- a/src/glx/x11/indirect.c
+++ b/src/glx/x11/indirect.c
@@ -39,11 +39,7 @@
#define __GLX_PAD(n) (((n) + 3) & ~3)
-# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__)
-# define FASTCALL __attribute__((fastcall))
-# else
-# define FASTCALL
-# endif
+#define FASTCALL
# if defined(__GNUC__)
# define NOINLINE __attribute__((noinline))
# else