+2005-03-26 Steven G. Kargl <kargls@comcast.net>
+
+ * gfortran.dg/underflow.f90: New test.
+ * gfortran.dg/g77/20030326-1.f: Fix illegal code.
+
2005-03-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/nonnull-3.c: Also test __builtin_strndup.
-C { dg-do compile }
-C PR fortran/9793
-C larson@w6yx.stanford.edu
-C
- integer a, b, c
-
- c = -2147483648 / -1 ! { dg-warning "outside symmetric range" "" }
-
- a = 1
- b = 0
- c = a / b
-
- print *, c
-
+! { dg-do compile }
+! { dg-options -pedantic }
+! PR fortran/9793
+! larson@w6yx.stanford.edu
+!
+! For gfortran, see PR 13490
+!
+ integer c
+ c = -2147483648 / (-1) ! { dg-warning "outside symmetric range" "" }
end
--- /dev/null
+! { dg-do compile}
+program a
+ real x
+ x = 1e-20 / 1e+20 ! { dg-warning "Arithmetic underflow" "" }
+end program a