diff options
author | Brian Paul <[email protected]> | 2002-06-04 21:29:20 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-04 21:29:20 +0000 |
commit | 28b03c6acb203bd4b523ea5ed39920bc52fc8fe5 (patch) | |
tree | 163d8e20252dc5f5d7936d2b31725b54ba5c80db /src/mesa/x86 | |
parent | f5a078197552bc956322e2fa292b034e4ccb9d82 (diff) |
use CONTENT() macro on line 205 (Josh Vanderhoof)
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/common_x86_asm.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/x86/common_x86_asm.S b/src/mesa/x86/common_x86_asm.S index 61ff15a1df8..f142e7dfa6a 100644 --- a/src/mesa/x86/common_x86_asm.S +++ b/src/mesa/x86/common_x86_asm.S @@ -1,10 +1,10 @@ -/* $Id: common_x86_asm.S,v 1.8 2002/03/07 21:40:08 brianp Exp $ */ +/* $Id: common_x86_asm.S,v 1.9 2002/06/04 21:29:20 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.0.3 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -202,7 +202,7 @@ GLNAME( _mesa_test_os_sse_exception_support ): LDMXCSR ( REGOFF( -8, EBP ) ) XORPS ( XMM0, XMM0 ) - MOVUPS ( GLNAME( sse_test_dummy ), XMM1 ) + MOVUPS ( CONTENT( GLNAME( sse_test_dummy ) ), XMM1 ) DIVPS ( XMM0, XMM1 ) |