OSDN Git Service

PR bootstrap/37097
authoruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Aug 2008 14:35:54 +0000 (14:35 +0000)
committeruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Aug 2008 14:35:54 +0000 (14:35 +0000)
* builtins.c (do_mpfr_bessel_n): Fix copy-and-paste bug introduced
by last change.
-This line, and those below, will be ignored--

M    gcc/builtins.c
M    gcc/ChangeLog

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139019 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/builtins.c

index 45f2cb9..23fa9d8 100644 (file)
@@ -1,5 +1,11 @@
 2008-08-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
 
+       PR bootstrap/37097
+       * builtins.c (do_mpfr_bessel_n): Fix copy-and-paste bug introduced
+       by last change.
+
+2008-08-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
+
        * defaults.h (TARGET_FLOAT_FORMAT): Remove.
        (UNKNOWN_FLOAT_FORMAT, IEEE_FLOAT_FORMAT, VAX_FLOAT_FORMAT): Remove.
 
index c062d3a..68cadb6 100644 (file)
@@ -13082,7 +13082,6 @@ do_mpfr_bessel_n (tree arg1, tree arg2, tree type,
          const struct real_format *fmt = REAL_MODE_FORMAT (TYPE_MODE (type));
          const int prec = fmt->p;
          const mp_rnd_t rnd = fmt->round_towards_zero? GMP_RNDZ : GMP_RNDN;
-         tree result_s, result_c;
          int inexact;
          mpfr_t m;