summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-25 14:20:02 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-25 14:20:26 +0100
commit2325d1959783aaf57178a86d8a0b28f168761e13 (patch)
treea035cfe005ae0cfef1de8d8f7926f384a5b448b0 /src
parent14cfcb18204233d3d4848ea8e579465983df3d75 (diff)
tgsi: fix compile when HIGH_PRECISION not defined
Diffstat (limited to 'src')
-rwxr-xr-xsrc/gallium/auxiliary/tgsi/exec/tgsi_sse2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c
index c3295a27ff..559370e613 100755
--- a/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c
+++ b/src/gallium/auxiliary/tgsi/exec/tgsi_sse2.c
@@ -854,7 +854,7 @@ emit_rsqrt(
/* On Intel CPUs at least, this is only accurate to 12 bits -- not
* good enough.
*/
- emit_rsqrtps(
+ sse_rsqrtps(
func,
make_xmm( xmm_dst ),
make_xmm( xmm_src ) );