frsp.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
- /*
- * BK Id: SCCS/s.frsp.c 1.6 05/17/01 18:14:22 cort
- */
- #include <linux/types.h>
- #include <linux/errno.h>
- #include <asm/uaccess.h>
- #include "soft-fp.h"
- #include "double.h"
- #include "single.h"
- int
- frsp(void *frD, void *frB)
- {
- FP_DECL_D(B);
- #ifdef DEBUG
- printk("%s: D %p, B %pn", __FUNCTION__, frD, frB);
- #endif
- __FP_UNPACK_D(B, frB);
- #ifdef DEBUG
- printk("B: %ld %lu %lu %ld (%ld)n", B_s, B_f1, B_f0, B_e, B_c);
- #endif
- return __FP_PACK_DS(frD, B);
- }