[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2021-04-09 Thread msebor at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27589 Martin Sebor changed: What|Removed |Added Blocks|24639 | CC|

[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2007-06-22 Thread burnus at gcc dot gnu dot org
--- Comment #4 from burnus at gcc dot gnu dot org 2007-06-22 13:15 --- (In reply to comment #3) Dump a valid program which contains equivalence to show a harder case for the checks (NAG f95 chokes on it). Actually this is wrong according to the Section 16.5.6 of the F2003 standard:

[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2007-06-21 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2007-06-21 16:58 --- Dump a valid program which contains equivalence to show a harder case for the checks (NAG f95 chokes on it). program main implicit none integer :: i, it, jt real:: tt equivalence

[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2007-04-18 Thread fxcoudert at gcc dot gnu dot org
-- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2007-03-22 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2007-03-22 22:20 --- There are actually two run-time tests possible: a) Check only local variables (What to do about actual arguments to intent(in) dummy arguments? In the most cases this is wrong, however

[Bug fortran/27589] Add compiler flag to check for uninitalized values at runtime

2006-05-13 Thread tobias dot burnus at physik dot fu-berlin dot de
--- Comment #1 from tobias dot burnus at physik dot fu-berlin dot de 2006-05-13 14:17 --- Post scriptum: In this case, using -Wuninitialized -O the compiler detects that the variable is uninitialized; however, for the other UIN*.FOR examples at polyhdron.com they are not detected at