diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 11:52:15 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 11:52:15 +0200 |
commit | 3bb1c31545d8ee7fd55f3dc7269bb74df8648b1c (patch) | |
tree | 4971413a0c01b1b292671a7d2028ea9db3e3a8a3 /src | |
parent | 6b454a7621efa197b3f922c1ea840b359ac573b2 (diff) | |
download | xine-lib-3bb1c31545d8ee7fd55f3dc7269bb74df8648b1c.tar.gz xine-lib-3bb1c31545d8ee7fd55f3dc7269bb74df8648b1c.tar.bz2 |
Silenced warning
--HG--
branch : point-release
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-utils/cpu_accel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xine-utils/cpu_accel.c b/src/xine-utils/cpu_accel.c index 1e12986fb..3f0140c7a 100644 --- a/src/xine-utils/cpu_accel.c +++ b/src/xine-utils/cpu_accel.c @@ -46,11 +46,13 @@ #if defined(ARCH_X86) || defined(ARCH_X86_64) +#ifndef __x86_64__ static jmp_buf sigill_return; static void sigill_handler (int n) { longjmp(sigill_return, 1); } +#endif static uint32_t arch_accel (void) { |