summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKendall Bennett <KendallB@scitechsoft.com>2003-10-03 00:15:13 +0000
committerKendall Bennett <KendallB@scitechsoft.com>2003-10-03 00:15:13 +0000
commitd7fe183f76c4e96d5c264c84b7dfc1665b69038b (patch)
tree1da144584c9a0b48ffa3c061f9d14f95d049937a /src
parentadbbea9b5123b7866cf5b31a6011b428b5ccc079 (diff)
Fixed incorrect Watcom assembler macros
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/imports.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 93be82382c..104ef4a4c0 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -615,7 +615,7 @@ void _watcom_start_fast_math(unsigned short *x,unsigned short *mask);
#pragma aux _watcom_start_fast_math = \
"fnstcw word ptr [eax]" \
"fldcw word ptr [ecx]" \
- parm [eax ecx] \
+ parm [eax] [ecx] \
modify exact [];
void _watcom_end_fast_math(unsigned short *x);
#pragma aux _watcom_end_fast_math = \
@@ -626,7 +626,7 @@ void _watcom_end_fast_math(unsigned short *x);
#if defined(NO_FAST_MATH)
#define START_FAST_MATH(x) \
do { \
- static GLushort mask = DEFAULT_X86_FPU; \
+ static GLushort mask = DEFAULT_X86_FPU; \
_watcom_start_fast_math(&x,&mask); \
} while (0)
#else