fix non-i386 builds

This commit is contained in:
Ben Skeggs 2008-04-23 12:38:37 +10:00
parent 72fd5b9c5a
commit 6fc530ccda
1 changed files with 2 additions and 0 deletions

View File

@ -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 );
}