[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2018-04-02 Thread zeccav at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Vittorio Zecca changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2018-03-01 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Martin Liška changed: What|Removed |Added Status|NEW |WAITING CC|

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2016-08-11 Thread zeccav at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 --- Comment #7 from Vittorio Zecca --- Still there in gcc 7.0 trunk 239276

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2016-08-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Richard Biener changed: What|Removed |Added Target Milestone|4.9.4 |---

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Jakub Jelinek changed: What|Removed |Added Target Milestone|4.9.3 |4.9.4

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2015-06-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 --- Comment #6 from Jakub Jelinek --- GCC 4.9.3 has been released.

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2014-10-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Jakub Jelinek changed: What|Removed |Added Target Milestone|4.9.2 |4.9.3 --- Comment #5 from Jakub Jelinek

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2014-09-04 Thread mpolacek at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Marek Polacek changed: What|Removed |Added Status|WAITING |NEW CC|

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2014-08-04 Thread zeccav at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 --- Comment #3 from Vittorio Zecca --- A fix for the offending instruction at trans-expr.c:2107 "n = (unsigned HOST_WIDE_INT) (m < 0 ? -m : m);" might be "n = (unsigned HOST_WIDE_INT) (m < 0 ? - (unsigned HOST_WIDE_INT) m : m);" So it seems this

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2014-08-04 Thread zeccav at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 --- Comment #2 from Vittorio Zecca --- It appears not depending on i value, for i=1 or 2. No explicit options used. Of course I used options -fsanizitized=address -fsanitized=undefined to generate gfortran. I think it is either a gfortran or a s

[Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power

2014-08-02 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |WAITING Last reconfirmed|