3 This code was written as part of the CMU Common Lisp project and has
4 been placed in the public domain.
11 * Define macro to allocate a local array of the appropriate size
12 * where the fpu state can be stored.
14 * PPC has 32 (double-precision) floating-point registers.
16 #define FPU_STATE_SIZE 32
17 #define FPU_STATE(name) long long name[FPU_STATE_SIZE];