rtasm: include yet another i386 define varient
authorKeith Whitwell <keith@tungstengraphics.com>
Sat, 19 Apr 2008 17:25:33 +0000 (18:25 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Sat, 19 Apr 2008 17:27:29 +0000 (18:27 +0100)
src/gallium/auxiliary/rtasm/rtasm_cpu.c

index eb3359750b4ff57e4aa9e24019a5573eea94442f..d577ff5b42f7b34c39b224c4d2719371640906d2 100644 (file)
@@ -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;