public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [Patch,Fortran,committed] bessel_7.f90 decrease precision, simplify.c - minor clean up
@ 2010-08-28 15:27 Tobias Burnus
  2010-08-28 16:41 ` Steve Kargl
  2010-08-31  7:03 ` H.J. Lu
  0 siblings, 2 replies; 6+ messages in thread
From: Tobias Burnus @ 2010-08-28 15:27 UTC (permalink / raw)
  To: gcc patches, gfortran

[-- Attachment #1: Type: text/plain, Size: 47 bytes --]

  Committed as obvious. (Rev. 163615).

Tobias

[-- Attachment #2: commit.diff --]
[-- Type: text/x-patch, Size: 3011 bytes --]

Index: testsuite/ChangeLog
===================================================================
--- testsuite/ChangeLog	(Revision 163613)
+++ testsuite/ChangeLog	(Arbeitskopie)
@@ -1,3 +1,8 @@
+2010-07-21  Steven G. Kargl  <kargl@gcc.gnu.org>
+	    Tobias Burnus  <burnus@net-b.de>
+
+	* gfortran.dg/bessel_7.f90: Decrease required precision.
+
 2010-08-27  Naveen H.S  <naveen.S@kpitcummins.com>
 	    Kaz Kojima  <kkojima@gcc.gnu.org>
 
Index: testsuite/gfortran.dg/bessel_7.f90
===================================================================
--- testsuite/gfortran.dg/bessel_7.f90	(Revision 163613)
+++ testsuite/gfortran.dg/bessel_7.f90	(Arbeitskopie)
@@ -8,7 +8,7 @@
 implicit none
 real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
 real,parameter :: myeps(size(values)) = epsilon(0.0) &
-                  * [2, 3, 3, 5, 7, 2, 12, 4, 7, 3, 30, 168 ]
+                  * [2, 3, 4, 5, 7, 2, 12, 4, 7, 6, 30, 168 ]
 ! The following is sufficient for me - the values above are a bit
 ! more tolerant
 !                  * [0, 0, 0, 3, 3, 0, 9, 0, 2, 1, 22, 130 ]
@@ -19,7 +19,7 @@ real :: rec(0:Nmax), lib(0:Nmax)
 integer :: i
 
 do i = 1, ubound(values,dim=1)
-  call compare(values(i), myeps(i), nit(i), 3*epsilon(0.0))
+  call compare(values(i), myeps(i), nit(i), 6*epsilon(0.0))
 end do
 
 contains
Index: fortran/ChangeLog
===================================================================
--- fortran/ChangeLog	(Revision 163613)
+++ fortran/ChangeLog	(Arbeitskopie)
@@ -1,3 +1,8 @@
+2010-07-21  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+	* simplify.c (gfc_simplify_bessel_n2): Fix indention
+	and argument type.
+
 2010-08-28  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
 	PR fortran/45436
Index: fortran/simplify.c
===================================================================
--- fortran/simplify.c	(Revision 163613)
+++ fortran/simplify.c	(Arbeitskopie)
@@ -1241,7 +1241,7 @@ gfc_simplify_bessel_n2 (gfc_expr *order1
       if (jn && n1 == 0)
 	{
 	  e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
-	  mpfr_set_ui (e->value.real, 1.0, GFC_RND_MODE);
+	  mpfr_set_ui (e->value.real, 1, GFC_RND_MODE);
 	  gfc_constructor_append_expr (&result->value.constructor, e,
 				       &x->where);
 	  n1++;
@@ -1251,7 +1251,7 @@ gfc_simplify_bessel_n2 (gfc_expr *order1
 	{
 	  e = gfc_get_constant_expr (x->ts.type, x->ts.kind, &x->where);
 	  if (jn)
-	    mpfr_set_ui (e->value.real, 0.0, GFC_RND_MODE);
+	    mpfr_set_ui (e->value.real, 0, GFC_RND_MODE);
 	  else
 	    mpfr_set_inf (e->value.real, -1);
 	  gfc_constructor_append_expr (&result->value.constructor, e,
@@ -1315,7 +1315,7 @@ gfc_simplify_bessel_n2 (gfc_expr *order1
       return &gfc_bad_expr;
     }
   if (jn)
-     gfc_constructor_insert_expr (&result->value.constructor, e, &x->where, -2);
+    gfc_constructor_insert_expr (&result->value.constructor, e, &x->where, -2);
   else 
     gfc_constructor_append_expr (&result->value.constructor, e, &x->where);
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-09-05 19:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-28 15:27 [Patch,Fortran,committed] bessel_7.f90 decrease precision, simplify.c - minor clean up Tobias Burnus
2010-08-28 16:41 ` Steve Kargl
2010-08-31  7:03 ` H.J. Lu
2010-09-02 20:06   ` Tobias Burnus
2010-09-02 21:07     ` H.J. Lu
2010-09-05 19:56       ` Tobias Burnus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).