mirror of git://gcc.gnu.org/git/gcc.git
re PR fortran/77942 (ICE: Floating point exception, in gfc_simplify_cshift, at fortran/simplify.c:1845)
2016-10-11 Steven G. Kargl <kargl@gcc.gnu.org> PR fortran/77942 * simplify.c (gfc_simplify_cshift): Check for zero. 2016-10-11 Steven G. Kargl <kargl@gcc.gnu.org> PR fortran/77942 * gfortran.dg/pr77942.f90 From-SVN: r241008
This commit is contained in:
parent
2560723055
commit
f6cf4810e9
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-10-11 Steven G. Kargl <kargl@gcc.gnu.org>
|
||||||
|
|
||||||
|
PR fortran/77942
|
||||||
|
* simplify.c (gfc_simplify_cshift): Check for zero.
|
||||||
|
|
||||||
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
||||||
|
|
||||||
* iresolve.c (get_radians, get_degrees): Fix sloppy commit.
|
* iresolve.c (get_radians, get_degrees): Fix sloppy commit.
|
||||||
|
|
@ -5,7 +10,7 @@
|
||||||
|
|
||||||
2016-10-11 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
2016-10-11 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||||
|
|
||||||
* simplify.c (radians_f): Fix mpdr_mod.
|
* simplify.c (radians_f): Fix mpfr_mod.
|
||||||
* ireolce.c (get_degrees): Declare tmp.
|
* ireolce.c (get_degrees): Declare tmp.
|
||||||
|
|
||||||
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
||||||
|
|
|
||||||
|
|
@ -1989,7 +1989,7 @@ gfc_simplify_cshift (gfc_expr *array, gfc_expr *shift, gfc_expr *dim)
|
||||||
shft = shft < 0 ? 1 - shft : shft;
|
shft = shft < 0 ? 1 - shft : shft;
|
||||||
|
|
||||||
/* Special case: Shift to the original order! */
|
/* Special case: Shift to the original order! */
|
||||||
if (shft % sz == 0)
|
if (sz == 0 || shft % sz == 0)
|
||||||
return a;
|
return a;
|
||||||
|
|
||||||
result = gfc_copy_expr (a);
|
result = gfc_copy_expr (a);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-10-11 Steven G. Kargl <kargl@gcc.gnu.org>
|
||||||
|
|
||||||
|
PR fortran/77942
|
||||||
|
* gfortran.dg/pr77942.f90
|
||||||
|
|
||||||
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
2016-10-11 Fritz Reese <fritzoreese@gmail.com>
|
||||||
|
|
||||||
* gfortran.dg/dec_math.f90: New testsuite.
|
* gfortran.dg/dec_math.f90: New testsuite.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
! { dg-do compile }
|
||||||
|
program p
|
||||||
|
character, parameter :: c(2) = 'a'
|
||||||
|
print *, cshift(c(2:1), 1)
|
||||||
|
end
|
||||||
Loading…
Reference in New Issue