mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 17:50:11 +01:00
tgsi: Use ESI instead of EBX as temp reg on non-win32
This commit is contained in:
parent
50d5f304ad
commit
e82c9b867c
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue