Re: [PR fortran/57553, patch] - bad error message for invalid use of STORAGE_SIZE

2019-01-27 Thread Thomas Koenig
Hi Harald, P.S.: this was my first actual commit to gcc. Congratulations, and welcome to the club! Regards Thomas

Re: [PR fortran/57553, patch] - bad error message for invalid use of STORAGE_SIZE

2019-01-26 Thread Harald Anlauf
Committed as Revision: 268303 URL: https://gcc.gnu.org/viewcvs?rev=268303&root=gcc&view=rev Log: 2019-01-26 Harald Anlauf PR fortran/57553 * expr.c (check_inquiry): Add list of inquiry functions allowed in constant expressions for F2008+. 2019-01-26 Harald Anlauf

Re: [PR fortran/57553, patch] - bad error message for invalid use of STORAGE_SIZE

2019-01-24 Thread Thomas Koenig
Hi Harald, OK for trunk? OK. Also not likely to cause a regression, so I think this is quite fine for now. Regards Thomas

[PR fortran/57553, patch] - bad error message for invalid use of STORAGE_SIZE

2019-01-22 Thread Harald Anlauf
The above PR had a partial fix by Tobias Burnus for a valid use of STORAGE_SIZE, but did not properly handle an error situation. The attached simple fix adds a list of allowed intrinsics for use in specification inquiries in F2008+. Testcase by Tobias. Regtested on x86_64-pc-linux-gnu. OK for t