summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpudetect.c b/cpudetect.c
index 1edf4a08be..d39026ea40 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -92,13 +92,6 @@ static int has_cpuid(void)
static void
do_cpuid(unsigned int ax, unsigned int *p)
{
-#if 0
- __asm__ volatile(
- "cpuid;"
- : "=a" (p[0]), "=b" (p[1]), "=c" (p[2]), "=d" (p[3])
- : "0" (ax)
- );
-#else
// code from libavcodec:
__asm__ volatile
("mov %%"REG_b", %%"REG_S"\n\t"
@@ -107,7 +100,6 @@ do_cpuid(unsigned int ax, unsigned int *p)
: "=a" (p[0]), "=S" (p[1]),
"=c" (p[2]), "=d" (p[3])
: "0" (ax));
-#endif
}
void GetCpuCaps( CpuCaps *caps)