From: Brian Paul Date: Thu, 30 Jan 2003 14:30:24 +0000 (+0000) Subject: fix reported 3Dnow bug in _mesa_normal_tab (Felix Kuhling) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c3bb69a94d665b794e38024d7e99ef4722adb72;p=mesa.git fix reported 3Dnow bug in _mesa_normal_tab (Felix Kuhling) --- diff --git a/src/mesa/x86/3dnow_normal.S b/src/mesa/x86/3dnow_normal.S index e7659a6ba6a..2855f608c39 100644 --- a/src/mesa/x86/3dnow_normal.S +++ b/src/mesa/x86/3dnow_normal.S @@ -1,4 +1,4 @@ -/* $Id: 3dnow_normal.S,v 1.4 2003/01/28 22:41:18 brianp Exp $ */ +/* $Id: 3dnow_normal.S,v 1.5 2003/01/30 14:30:24 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -732,14 +732,14 @@ LLBL (G3N_norm2): /* need to calculate lengths */ PREFETCHW ( REGIND(EAX) ) - MOVQ ( MM0, MM3 ) /* x1 | x0 */ - ADD_L ( STRIDE, ECX ) /* next normal */ - PREFETCH ( REGIND(ECX) ) MOVQ ( REGIND(ECX), MM0 ) /* x1 | x0 */ MOVD ( REGOFF(8, ECX), MM1 ) /* | x2 */ + MOVQ ( MM0, MM3 ) /* x1 | x0 */ + ADD_L ( STRIDE, ECX ) /* next normal */ + PFMUL ( MM0, MM3 ) /* x1*x1 | x0*x0 */ MOVQ ( MM1, MM4 ) /* | x2 */