GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / math-emu / fctiwz.c
blob71e782fd4fe35b13a2d1e1b77d6f8b7f32855738
1 #include <linux/types.h>
2 #include <linux/errno.h>
3 #include <asm/uaccess.h>
5 #include <asm/sfp-machine.h>
6 #include <math-emu/soft-fp.h>
7 #include <math-emu/double.h>
9 int
10 fctiwz(u32 *frD, void *frB)
12 FP_DECL_D(B);
13 FP_DECL_EX;
14 u32 fpscr;
15 unsigned int r;
17 fpscr = __FPU_FPSCR;
18 __FPU_FPSCR &= ~(3);
19 __FPU_FPSCR |= FP_RND_ZERO;
21 FP_UNPACK_DP(B, frB);
22 FP_TO_INT_D(r, B, 32, 1);
23 frD[1] = r;
25 __FPU_FPSCR = fpscr;
27 #ifdef DEBUG
28 printk("%s: D %p, B %p: ", __func__, frD, frB);
29 dump_double(frD);
30 printk("\n");
31 #endif
33 return 0;