tgsi: Use ESI instead of EBX as temp reg on non-win32

This commit is contained in:
Keith Whitwell 2008-01-31 11:57:15 +00:00
parent 50d5f304ad
commit e82c9b867c

View file

@ -198,9 +198,15 @@ get_output_base( void )
static struct x86_reg
get_temp_base( void )
{
#ifdef WIN32
return x86_make_reg(
file_REG32,
reg_BX );
#else
return x86_make_reg(
file_REG32,
reg_SI );
#endif
}
static struct x86_reg