mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 21:40:08 +01:00
rtasm: include yet another i386 define varient
This commit is contained in:
parent
d3cb62b8b3
commit
af523a5bd7
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@
|
|||
int rtasm_cpu_has_sse(void)
|
||||
{
|
||||
/* FIXME: actually detect this at run-time */
|
||||
#if defined(__i386__) || defined(__386__)
|
||||
#if defined(__i386__) || defined(__386__) || defined(i386)
|
||||
return 1;
|
||||
#else
|
||||
return 0;
|
||||
|
|
@ -42,7 +42,7 @@ int rtasm_cpu_has_sse(void)
|
|||
int rtasm_cpu_has_sse2(void)
|
||||
{
|
||||
/* FIXME: actually detect this at run-time */
|
||||
#if defined(__i386__) || defined(__386__)
|
||||
#if defined(__i386__) || defined(__386__) || defined(i386)
|
||||
return 1;
|
||||
#else
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue