diff options
author | Gareth Hughes <[email protected]> | 2001-05-13 18:55:15 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-05-13 18:55:15 +0000 |
commit | 53e4ebd4e36c0ae462d71c87cda3533f9d001324 (patch) | |
tree | 0fc3cbaf4c8a028a6b1b7c5d48568ed2fba752f4 /src/mesa/x86/x86.c | |
parent | d29e9dfe93cc4ff22cbffba400741f726b953c66 (diff) |
Fix long-standing FP exception bug in _mesa_x86_cliptest_points4().
Diffstat (limited to 'src/mesa/x86/x86.c')
-rw-r--r-- | src/mesa/x86/x86.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c index ddcfe86a752..b2b442c87e2 100644 --- a/src/mesa/x86/x86.c +++ b/src/mesa/x86/x86.c @@ -1,4 +1,4 @@ -/* $Id: x86.c,v 1.21 2001/03/30 14:44:43 gareth Exp $ */ +/* $Id: x86.c,v 1.22 2001/05/13 18:55:15 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -85,7 +85,6 @@ void _mesa_init_x86_transform_asm( void ) ASSIGN_XFORM_GROUP( x86, 3 ); ASSIGN_XFORM_GROUP( x86, 4 ); - /* XXX this function has been found to cause FP overflow exceptions */ _mesa_clip_tab[4] = _mesa_x86_cliptest_points4; _mesa_clip_np_tab[4] = _mesa_x86_cliptest_points4_np; |