added ifdef elses for fpu.cc to handle non-intel properly

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2095 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Jesse Chappell 2007-07-03 01:53:42 +00:00
parent e26bd79eab
commit b5c8f14271

View file

@ -18,7 +18,8 @@ FPU::FPU ()
#ifndef ARCH_X86
return;
#endif
#else
#ifndef USE_X86_64_ASM
asm volatile (
@ -90,6 +91,7 @@ FPU::FPU ()
free (fxbuf);
}
}
#endif // ARCH_X86
}
FPU::~FPU ()