frsp.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.frsp.c 1.6 05/17/01 18:14:22 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7. #include "soft-fp.h"
  8. #include "double.h"
  9. #include "single.h"
  10. int
  11. frsp(void *frD, void *frB)
  12. {
  13. FP_DECL_D(B);
  14. #ifdef DEBUG
  15. printk("%s: D %p, B %pn", __FUNCTION__, frD, frB);
  16. #endif
  17. __FP_UNPACK_D(B, frB);
  18. #ifdef DEBUG
  19. printk("B: %ld %lu %lu %ld (%ld)n", B_s, B_f1, B_f0, B_e, B_c);
  20. #endif
  21. return __FP_PACK_DS(frD, B);
  22. }