From d6434e1042f3b0a6dfe1b1f615af369486f9b1fa Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Sat, 9 Oct 1999 00:00:47 +0000 Subject: Merge with 2.3.19. --- arch/ppc/math-emu/fmr.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 arch/ppc/math-emu/fmr.c (limited to 'arch/ppc/math-emu/fmr.c') diff --git a/arch/ppc/math-emu/fmr.c b/arch/ppc/math-emu/fmr.c new file mode 100644 index 000000000..1a4de69f7 --- /dev/null +++ b/arch/ppc/math-emu/fmr.c @@ -0,0 +1,21 @@ +/* $Id: fmr.c,v 1.1 1999/08/23 18:59:40 cort Exp $ + */ + +#include +#include +#include + +int +fmr(u32 *frD, u32 *frB) +{ + frD[0] = frB[0]; + frD[1] = frB[1]; + +#ifdef DEBUG + printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB); + dump_double(frD); + printk("\n"); +#endif + + return 0; +} -- cgit v1.2.3