repo.or.cz
/
linux-2.6
/
linux-mips
/
linux-dm7025.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[linux-2.6/linux-mips/linux-dm7025.git]
/
arch
/
powerpc
/
math-emu
/
fctiw.c
blob
fcd7a95e021dcb5b9711115c57830ceeefaeefef
1
#include <linux/types.h>
2
#include <linux/errno.h>
3
#include <asm/uaccess.h>
4
5
#include
"soft-fp.h"
6
#include
"double.h"
7
8
int
9
fctiw
(
u32
*
frD
,
void
*
frB
)
10
{
11
FP_DECL_D
(
B
);
12
unsigned int
r
;
13
14
__FP_UNPACK_D
(
B
,
frB
);
15
FP_TO_INT_D
(
r
,
B
,
32
,
1
);
16
frD
[
1
] =
r
;
17
18
#ifdef DEBUG
19
printk
(
"%s: D %p, B %p: "
,
__func__
,
frD
,
frB
);
20
dump_double
(
frD
);
21
printk
(
"
\n
"
);
22
#endif
23
24
return
0
;
25
}