diff options
Diffstat (limited to 'soft-fp/fmadf4.c')
-rw-r--r-- | soft-fp/fmadf4.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/soft-fp/fmadf4.c b/soft-fp/fmadf4.c index ebdc2b1d22..bc02756ccc 100644 --- a/soft-fp/fmadf4.c +++ b/soft-fp/fmadf4.c @@ -33,7 +33,10 @@ double __fma (double a, double b, double c) { FP_DECL_EX; - FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(C); FP_DECL_D(R); + FP_DECL_D(A); + FP_DECL_D(B); + FP_DECL_D(C); + FP_DECL_D(R); double r; FP_INIT_ROUNDMODE; |