diff options
Diffstat (limited to 'arch/sparc/math-emu/fdtoq.c')
-rw-r--r-- | arch/sparc/math-emu/fdtoq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/sparc/math-emu/fdtoq.c b/arch/sparc/math-emu/fdtoq.c index 84ebcf4a2..7b7746821 100644 --- a/arch/sparc/math-emu/fdtoq.c +++ b/arch/sparc/math-emu/fdtoq.c @@ -8,6 +8,5 @@ int FDTOQ(void *rd, void *rs2) __FP_UNPACK_D(A, rs2); FP_CONV(Q,D,4,2,R,A); - __FP_PACK_Q(rd, R); - return 1; + return __FP_PACK_Q(rd, R); } |