mesa: fix broken x86_call()
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 11 Apr 2008 19:21:22 +0000 (13:21 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 11 Apr 2008 20:19:31 +0000 (14:19 -0600)
src/mesa/x86/rtasm/x86sse.c

index 39c0e9b851ab747e4c4cbb2db268d30c2ea86f9e..7a91364ed8a56b38157b886308dd2b2026617bc3 100644 (file)
@@ -1,3 +1,4 @@
+#ifdef USE_X86_ASM
 #if defined(__i386__) || defined(__386__)
 
 #include "imports.h"
@@ -290,7 +291,7 @@ void x86_call( struct x86_function *p, void (*label)())
 void x86_call( struct x86_function *p, struct x86_reg reg)
 {
    emit_1ub(p, 0xff);
-   emit_modrm(p, reg, reg);
+   emit_modrm_noreg(p, 2, reg);
 }
 #endif
 
@@ -1191,3 +1192,9 @@ void x86sse_dummy( void )
 }
 
 #endif
+
+#else  /* USE_X86_ASM */
+
+int x86sse_c_dummy_var; /* silence warning */
+
+#endif /* USE_X86_ASM */