projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
adbbea9
)
Fixed incorrect Watcom assembler macros
author
Kendall Bennett
<KendallB@scitechsoft.com>
Fri, 3 Oct 2003 00:15:13 +0000
(
00:15
+0000)
committer
Kendall Bennett
<KendallB@scitechsoft.com>
Fri, 3 Oct 2003 00:15:13 +0000
(
00:15
+0000)
src/mesa/main/imports.h
patch
|
blob
|
history
diff --git
a/src/mesa/main/imports.h
b/src/mesa/main/imports.h
index 93be82382cd6195631e3054c69b44796cad68f14..104ef4a4c0860afc7558e9c1b5a1712c1cfae27e 100644
(file)
--- 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