summaryrefslogtreecommitdiff
path: root/examples/oil-inspect.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/oil-inspect.c')
-rw-r--r--examples/oil-inspect.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/oil-inspect.c b/examples/oil-inspect.c
index 6ab2e14..a9f13ca 100644
--- a/examples/oil-inspect.c
+++ b/examples/oil-inspect.c
@@ -76,7 +76,6 @@ oil_flags_to_string (unsigned int flags)
ret = string_append (ret, "altopt");
if (flags & OIL_IMPL_FLAG_ASM)
ret = string_append (ret, "asm");
-#ifdef HAVE_CPU_I386
if (flags & OIL_IMPL_FLAG_CMOV)
ret = string_append (ret, "cmov");
if (flags & OIL_IMPL_FLAG_MMX)
@@ -91,11 +90,8 @@ oil_flags_to_string (unsigned int flags)
ret = string_append (ret, "3dnow");
if (flags & OIL_IMPL_FLAG_3DNOWEXT)
ret = string_append (ret, "3dnowext");
-#endif
-#ifdef HAVE_CPU_PPC
if (flags & OIL_IMPL_FLAG_ALTIVEC)
ret = string_append (ret, "altivec");
-#endif
return ret;
}