summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:44:36 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:44:36 +0000
commit17923f688bf59f88ac9939a57afb51f45098ab7f (patch)
tree57f3a2cb352dbdfaccd298dce66d930815be38ab /cpudetect.c
parent9dee994c239562cd0dc89aad73a977b033324969 (diff)
downloadmpv-17923f688bf59f88ac9939a57afb51f45098ab7f.tar.bz2
mpv-17923f688bf59f88ac9939a57afb51f45098ab7f.tar.xz
Fix a wrongly converted !defined(ARCH_X86_64)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28330 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c
index bd9aa2c6b9..de9692349c 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -304,7 +304,7 @@ char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]){
#undef CPUID_STEPPING
-#if defined(__linux__) && defined(_POSIX_SOURCE) && ARCH_X86_64
+#if defined(__linux__) && defined(_POSIX_SOURCE) && !ARCH_X86_64
static void sigill_handler_sse( int signal, struct sigcontext sc )
{
mp_msg(MSGT_CPUDETECT,MSGL_V, "SIGILL, " );