[Bug fortran/89431] CPP integer macros not defined

2019-02-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/89431] CPP integer macros not defined

2019-02-22 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #9 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Feb 22 20:27:57 2019 New Revision: 269132 URL: https://gcc.gnu.org/viewcvs?rev=269132=gcc=rev Log: 2019-02-22 Steven G. Kargl PR fortran/89431 *

[Bug fortran/89431] CPP integer macros not defined

2019-02-22 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #8 from Steve Kargl --- On Fri, Feb 22, 2019 at 08:33:25AM +, mark.eggleston at codethink dot com wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 > > --- Comment #7 from MarkEggleston --- > The only reason this PR

[Bug fortran/89431] CPP integer macros not defined

2019-02-22 Thread mark.eggleston at codethink dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #7 from MarkEggleston --- The only reason this PR was raised was because an attempt to use conditional compilation based on integer kinds failed because the implementation did not match the documentation. There is no issue with the

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #6 from Steve Kargl --- On Thu, Feb 21, 2019 at 10:44:25AM +, dominiq at lps dot ens.fr wrote: >4 8 10 16 > __GFC_REAL_10__ defined > __GFC_REAL_16__ defined These are needed for the

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread sgk at troutmask dot apl.washington.edu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #5 from Steve Kargl --- On Thu, Feb 21, 2019 at 10:09:03AM +, dominiq at lps dot ens.fr wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 > > Dominique d'Humieres changed: > >What|Removed

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread mark.eggleston at codethink dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #4 from MarkEggleston --- (In reply to Dominique d'Humieres from comment #3) > program test > use iso_fortran_env > implicit none > write(*,*) integer_kinds > #ifdef __GFC_INT_1__ > write(*,*) "__GFC_INT_1__ defined" > #else

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #3 from Dominique d'Humieres --- program test use iso_fortran_env implicit none write(*,*) integer_kinds #ifdef __GFC_INT_1__ write(*,*) "__GFC_INT_1__ defined" #else write(*,*) "__GFC_INT_1__ undefined" #endif #ifdef

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread mark.eggleston at codethink dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 --- Comment #2 from MarkEggleston --- (In reply to Dominique d'Humieres from comment #1) > These macros have been introduced at revision r267464. > > Looking at the code I don't see why __GFC_REAL_* are defined, but not > __GFC_INTEGER_*.

[Bug fortran/89431] CPP integer macros not defined

2019-02-21 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89431 Dominique d'Humieres changed: What|Removed |Added Priority|P3 |P5