diff options
Diffstat (limited to 'gcc/fortran/arith.c')
-rw-r--r-- | gcc/fortran/arith.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/fortran/arith.c b/gcc/fortran/arith.c index 8fa305c..c3be14d 100644 --- a/gcc/fortran/arith.c +++ b/gcc/fortran/arith.c @@ -2001,13 +2001,14 @@ wprecision_real_real (mpfr_t r, int from_kind, int to_kind) static bool wprecision_int_real (mpz_t n, mpfr_t r) { + bool ret; mpz_t i; mpz_init (i); mpfr_get_z (i, r, GFC_RND_MODE); mpz_sub (i, i, n); - return mpz_cmp_si (i, 0) != 0; + ret = mpz_cmp_si (i, 0) != 0; mpz_clear (i); - + return ret; } /* Convert integers to integers. */ |