mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
fix non-i386 builds
This commit is contained in:
parent
72fd5b9c5a
commit
6fc530ccda
1 changed files with 2 additions and 0 deletions
|
|
@ -38,9 +38,11 @@ struct translate *translate_create( const struct translate_key *key )
|
|||
{
|
||||
struct translate *translate = NULL;
|
||||
|
||||
#if defined(__i386__) || defined(__386__) || defined(i386)
|
||||
translate = translate_sse2_create( key );
|
||||
if (translate)
|
||||
return translate;
|
||||
#endif
|
||||
|
||||
return translate_generic_create( key );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue