gallium: fix broken x86_call()

This commit is contained in:
Keith Whitwell
2008-04-11 13:20:52 -06:00
committed by Brian Paul
parent 02250c855f
commit 4d184cc331
+1 -1
View File
@@ -317,7 +317,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