Re: [patch, fortran] Clobber some intent(out) variables on call

2018-09-22 Thread Thomas Koenig
Hi Jerry, s/tue/due/ a = 12345689  < missing 7 digit? Yep, you're right. Corrected, committed as r264506. Regards Thomas

Re: [patch, fortran] Clobber some intent(out) variables on call

2018-09-22 Thread Jerry DeLisle
Minor typo, see below. On 9/22/18 10:23 AM, Thomas Koenig wrote: Hello world, the attached patch lets the middle-end know that variables associated with intent(out) arguments become undefined, by issuing an assignment to a special value (a "clobber") before entering the procedure. Originally,

[patch, fortran] Clobber some intent(out) variables on call

2018-09-22 Thread Thomas Koenig
Hello world, the attached patch lets the middle-end know that variables associated with intent(out) arguments become undefined, by issuing an assignment to a special value (a "clobber") before entering the procedure. Originally, I had also planned to do so on entry to the procedure, see https://