diff options
Diffstat (limited to 'arch/sparc64/math-emu/fadds.c')
-rw-r--r-- | arch/sparc64/math-emu/fadds.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/sparc64/math-emu/fadds.c b/arch/sparc64/math-emu/fadds.c index 71295ae47..35bb2030e 100644 --- a/arch/sparc64/math-emu/fadds.c +++ b/arch/sparc64/math-emu/fadds.c @@ -8,6 +8,5 @@ int FADDS(void *rd, void *rs2, void *rs1) __FP_UNPACK_S(A, rs1); __FP_UNPACK_S(B, rs2); FP_ADD_S(R, A, B); - __FP_PACK_S(rd, R); - return 1; + return __FP_PACK_S(rd, R); } |