diff options
author | Daniel Borca <[email protected]> | 2004-11-15 08:06:55 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-11-15 08:06:55 +0000 |
commit | 4ffc5fa7a58519853a7578838f5574b65e9f39a3 (patch) | |
tree | 3eade44ba6f8da586ef2f562d889d66a13b11b25 | |
parent | fdd74136b32e27c9193748176be1e2b87fae4075 (diff) |
work around a bug in gcc 3.3.3 (which duplicates ASM block)
-rw-r--r-- | src/mesa/drivers/dos/dpmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dos/dpmi.c b/src/mesa/drivers/dos/dpmi.c index 81af6ac5d0b..b2cef04ac8f 100644 --- a/src/mesa/drivers/dos/dpmi.c +++ b/src/mesa/drivers/dos/dpmi.c @@ -140,7 +140,7 @@ int _can_mmx (void) { #ifdef USE_MMX_ASM - static int x86_cpu_features = 0; + int x86_cpu_features = 0; __asm("\n\ pushfl \n\ popl %%eax \n\ |