From 062d6e4af8c148d378e883ba3254ced67523812b Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Fri, 25 Jun 2004 15:52:21 +0000 Subject: have CVS compile again CVS patchset: 6742 CVS date: 2004/06/25 15:52:21 --- src/xine-utils/cpu_accel.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/xine-utils/cpu_accel.c b/src/xine-utils/cpu_accel.c index 5e721debf..9c2800405 100644 --- a/src/xine-utils/cpu_accel.c +++ b/src/xine-utils/cpu_accel.c @@ -41,6 +41,12 @@ #include "xineutils.h" #if defined(ARCH_X86) || defined(ARCH_X86_64) + +static jmp_buf sigill_return; + +static void sigill_handler (int n) { + longjmp(sigill_return, 1); +} static uint32_t arch_accel (void) { uint32_t caps; @@ -162,11 +168,6 @@ static uint32_t arch_accel (void) return caps; } -static jmp_buf sigill_return; - -static void sigill_handler (int n) { - longjmp(sigill_return, 1); -} #endif /* ARCH_X86 */ #if defined(ARCH_PPC) && defined(ENABLE_ALTIVEC) -- cgit v1.2.3