diff options
author | Brian Paul <[email protected]> | 2002-06-11 01:26:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-11 01:26:58 +0000 |
commit | 35883ceb9389f9e5b4be8233f2326367c6aecddb (patch) | |
tree | 9bf611edc41f33119ce4f1152db50943a5f762d7 /src/mesa/x86/x86_cliptest.S | |
parent | 4fe2f3f1a01b3825a6d24f5694d705aee6911a3b (diff) |
Fix NASM problems, remove static var in SSE detection code. (Josh Vanderhoof)
Diffstat (limited to 'src/mesa/x86/x86_cliptest.S')
-rw-r--r-- | src/mesa/x86/x86_cliptest.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/x86_cliptest.S b/src/mesa/x86/x86_cliptest.S index 617eb2b6fea..745d1dfb17f 100644 --- a/src/mesa/x86/x86_cliptest.S +++ b/src/mesa/x86/x86_cliptest.S @@ -1,4 +1,4 @@ -/* $Id: x86_cliptest.S,v 1.9 2002/03/07 21:40:08 brianp Exp $ */ +/* $Id: x86_cliptest.S,v 1.10 2002/06/11 01:26:58 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -95,7 +95,7 @@ clip_table: * EBP: temp2 */ -#if defined(__ELF__) && defined(__PIC__) && !defined(ELFPIC) +#if defined(__ELF__) && defined(__PIC__) && defined(GNU_ASSEMBLER) && !defined(ELFPIC) #define ELFPIC #endif |