public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/42954] [4.5 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
@ 2010-09-26 16:47 ` fxcoudert at gcc dot gnu.org
  2010-09-26 17:47 ` fxcoudert at gcc dot gnu.org
                   ` (33 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2010-09-26 16:47 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2010.09.26 13:19:37
               date|                            |
                 CC|                            |fxcoudert at gcc dot
                   |                            |gnu.org
         AssignedTo|unassigned at gcc dot       |fxcoudert at gcc dot
                   |gnu.org                     |gnu.org
            Summary|gfortran with libcpp:       |[4.5 regression]
                   |TARGET_*_CPP_BUILDINS       |TARGET_*_CPP_BUILDINS
                   |issues (MinGW, FreeBSD,     |issues with gfortran
                   |MIPS, Fry)                  |
     Ever Confirmed|0                           |1

--- Comment #6 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> 2010-09-26 13:19:37 UTC ---
(In reply to comment #5)
> Patch for fixing at least target part for preprocessor

Doesn't work, for example as config/alpha/linux.h uses c_dialect_cxx() in the
macro, which is not accessible from the Fortran front-end (being a C-family
function).

I'm conducting of full audit of these macros in config/, and will report back
here when it's done.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
  2010-09-26 16:47 ` [Bug fortran/42954] [4.5 regression] TARGET_*_CPP_BUILDINS issues with gfortran fxcoudert at gcc dot gnu.org
@ 2010-09-26 17:47 ` fxcoudert at gcc dot gnu.org
  2010-09-27 10:31 ` [Bug fortran/42954] [4.5/4.6 " burnus at gcc dot gnu.org
                   ` (32 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2010-09-26 17:47 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #7 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> 2010-09-26 13:44:10 UTC ---
After some auditing: TARGET_OBJFMT_CPP_BUILTINS is safe (it's only called in
config/elfos.h and config/alpha/elf.h, and contains a single, unconditionnal
call to builtin_define()).

Regarding TARGET_OS_CPP_BUILTINS, definitions in the following files may not be
safe for the Fortran front-end:

alpha/linux.h: c_dialect_cxx
alpha/osf5.h: c_dialect_cxx
arm/vxworks.h: arm_arch_xscale, arm_arch5, arm_arch4, thumb_code
cris/linux.h: flag_leading_underscore
i386/cygming.h: flag_iso
i386/darwin.h: darwin_cpp_builtins
i386/i386-interix.h: preprocessing_asm_p, c_dialect_cxx, c_dialect_objc
i386/netware.h: flag_iso
ia64/hpux.h: c_dialect_cxx, flag_iso
mips/iris6.h: flag_isoc99, c_dialect_cxx, flag_iso
mips/linux.h: c_dialect_cxx
mips/netbsd.h: mips_abi
pa/pa-hpux.h: c_dialect_cxx, flag_iso, preprocessing_trad_p
pa/pa-hpux10.h: c_dialect_cxx, flag_iso, preprocessing_trad_p, flag_pa_unix
pa/pa-hpux11.h: c_dialect_cxx, flag_iso, preprocessing_trad_p, flag_pa_unix,
flag_isoc94, flag_isoc99, 
pa/pa.h: c_dialect_cxx, flag_iso
rs6000/darwin.h: darwin_cpp_builtins
rs6000/sysv4.h: target_flags_explicit
sol2.h: c_dialect_cxx

(each time, I give the list of variables/functions which may not be accessible
from the Fortran front-end). One thing we could do is wrap all that with some
IS_INSIDE_C_FAMILY_FRONTEND macro, so that it's just protected in Fortran and
potentially other languages. Or we double the work and split
TARGET_OS_CPP_BUILTINS into TARGET_OS_CPP_CFAMILY_BUILTINS and
TARGET_OS_CPP_OTHERLANG_BUILTINS (you get the idea).


I still have to audit TARGET_CPU_CPP_BUILTINS, but I'm running out of time for
today.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
  2010-09-26 16:47 ` [Bug fortran/42954] [4.5 regression] TARGET_*_CPP_BUILDINS issues with gfortran fxcoudert at gcc dot gnu.org
  2010-09-26 17:47 ` fxcoudert at gcc dot gnu.org
@ 2010-09-27 10:31 ` burnus at gcc dot gnu.org
  2010-09-30 12:22 ` rguenth at gcc dot gnu.org
                   ` (31 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-09-27 10:31 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.6.0
            Summary|[4.5 regression]            |[4.5/4.6 regression]
                   |TARGET_*_CPP_BUILDINS       |TARGET_*_CPP_BUILDINS
                   |issues with gfortran        |issues with gfortran


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2010-09-27 10:31 ` [Bug fortran/42954] [4.5/4.6 " burnus at gcc dot gnu.org
@ 2010-09-30 12:22 ` rguenth at gcc dot gnu.org
  2010-09-30 21:19 ` nightstrike at gmail dot com
                   ` (30 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-09-30 12:22 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2010-09-30 12:22 ` rguenth at gcc dot gnu.org
@ 2010-09-30 21:19 ` nightstrike at gmail dot com
  2010-10-03 12:02 ` fxcoudert at gcc dot gnu.org
                   ` (29 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: nightstrike at gmail dot com @ 2010-09-30 21:19 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #8 from nightstrike <nightstrike at gmail dot com> 2010-09-30 18:47:04 UTC ---
This bug is listed as NEW, not ASSIGNED, but it's set to be assigned to FX. 
Can the status be updated to ASSIGNED?


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2010-09-30 21:19 ` nightstrike at gmail dot com
@ 2010-10-03 12:02 ` fxcoudert at gcc dot gnu.org
  2010-10-07 10:51 ` fxcoudert at gcc dot gnu.org
                   ` (28 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2010-10-03 12:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |longb at cray dot com

--- Comment #9 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> 2010-10-03 12:01:50 UTC ---
*** Bug 42042 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2010-10-03 12:02 ` fxcoudert at gcc dot gnu.org
@ 2010-10-07 10:51 ` fxcoudert at gcc dot gnu.org
  2010-11-07 17:07 ` burnus at gcc dot gnu.org
                   ` (27 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2010-10-07 10:51 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch

--- Comment #10 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> 2010-10-07 10:50:48 UTC ---
Complete patch submitted here:
http://gcc.gnu.org/ml/gcc-patches/2010-10/msg00566.html


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2010-10-07 10:51 ` fxcoudert at gcc dot gnu.org
@ 2010-11-07 17:07 ` burnus at gcc dot gnu.org
  2010-11-08  9:30 ` burnus at gcc dot gnu.org
                   ` (26 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-11-07 17:07 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #11 from Tobias Burnus <burnus at gcc dot gnu.org> 2010-11-07 17:07:00 UTC ---
Last patch:
  http://gcc.gnu.org/ml/fortran/2010-11/msg00052.html


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2010-11-07 17:07 ` burnus at gcc dot gnu.org
@ 2010-11-08  9:30 ` burnus at gcc dot gnu.org
  2011-01-05 16:50 ` pinskia at gcc dot gnu.org
                   ` (25 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-11-08  9:30 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #12 from Tobias Burnus <burnus at gcc dot gnu.org> 2010-11-08 09:30:11 UTC ---
(In reply to comment #11)
> Last patch:
>   http://gcc.gnu.org/ml/fortran/2010-11/msg00052.html

Review comments by Ian Taylor were:
* More macros now refer to magic variables which must be in scope when
  the macro is used, namely pfile and iso.

* Code in the generic backend is now calling cpp_define, which is in
  libcpp.  This was not the case before.  It does not seem appropriate
  for languages like Java and Ada which do not use the C preprocessor at
  all.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2010-11-08  9:30 ` burnus at gcc dot gnu.org
@ 2011-01-05 16:50 ` pinskia at gcc dot gnu.org
  2011-03-15  8:59 ` [Bug fortran/42954] [4.5/4.6/4.7 " fxcoudert at gcc dot gnu.org
                   ` (24 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: pinskia at gcc dot gnu.org @ 2011-01-05 16:50 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jan.rauberg at gmx dot de

--- Comment #13 from Andrew Pinski <pinskia at gcc dot gnu.org> 2011-01-05 16:49:54 UTC ---
*** Bug 47175 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2011-01-05 16:50 ` pinskia at gcc dot gnu.org
@ 2011-03-15  8:59 ` fxcoudert at gcc dot gnu.org
  2011-03-18 15:48 ` jb at gcc dot gnu.org
                   ` (23 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2011-03-15  8:59 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW
         AssignedTo|fxcoudert at gcc dot        |unassigned at gcc dot
                   |gnu.org                     |gnu.org


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2011-03-15  8:59 ` [Bug fortran/42954] [4.5/4.6/4.7 " fxcoudert at gcc dot gnu.org
@ 2011-03-18 15:48 ` jb at gcc dot gnu.org
  2011-03-25 20:01 ` jakub at gcc dot gnu.org
                   ` (22 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jb at gcc dot gnu.org @ 2011-03-18 15:48 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Janne Blomqvist <jb at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |thenlich at users dot
                   |                            |sourceforge.net

--- Comment #14 from Janne Blomqvist <jb at gcc dot gnu.org> 2011-03-18 15:45:59 UTC ---
*** Bug 47965 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2011-03-18 15:48 ` jb at gcc dot gnu.org
@ 2011-03-25 20:01 ` jakub at gcc dot gnu.org
  2011-06-27 16:12 ` jakub at gcc dot gnu.org
                   ` (21 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 20:01 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.0                       |4.6.1

--- Comment #15 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-25 19:52:23 UTC ---
GCC 4.6.0 is being released, adjusting target milestone.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2011-03-25 20:01 ` jakub at gcc dot gnu.org
@ 2011-06-27 16:12 ` jakub at gcc dot gnu.org
  2011-10-26 17:21 ` jakub at gcc dot gnu.org
                   ` (20 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-06-27 16:12 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.1                       |4.6.2

--- Comment #16 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-06-27 12:32:46 UTC ---
GCC 4.6.1 is being released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILDINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2011-06-27 16:12 ` jakub at gcc dot gnu.org
@ 2011-10-26 17:21 ` jakub at gcc dot gnu.org
  2011-10-27  2:01 ` [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS " nightstrike at gmail dot com
                   ` (19 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-10-26 17:21 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.2                       |4.6.3

--- Comment #17 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-10-26 17:13:33 UTC ---
GCC 4.6.2 is being released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2011-10-26 17:21 ` jakub at gcc dot gnu.org
@ 2011-10-27  2:01 ` nightstrike at gmail dot com
  2011-10-27  9:39 ` burnus at gcc dot gnu.org
                   ` (18 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: nightstrike at gmail dot com @ 2011-10-27  2:01 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #18 from nightstrike <nightstrike at gmail dot com> 2011-10-27 02:00:37 UTC ---
We have a patch.  What else is missing?


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2011-10-27  2:01 ` [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS " nightstrike at gmail dot com
@ 2011-10-27  9:39 ` burnus at gcc dot gnu.org
  2012-01-09 11:12 ` [Bug fortran/42954] [4.4/4.5/4.6/4.7 " burnus at gcc dot gnu.org
                   ` (17 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: burnus at gcc dot gnu.org @ 2011-10-27  9:39 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.3                       |4.7.0

--- Comment #19 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-10-27 09:32:22 UTC ---
Moved to 4.7. It's actually rather a 4.8 item as all 14 targets need to be
patched.

(In reply to comment #18)
> We have a patch.  What else is missing?

See comment 11 for the patch (follow the link) and comment 12 for things which
have to be done before it can be committed. (The one of comment 5 is more a
hack than a proper patch.)

The best way is probably to implement it first for the common x86-64 and, when
the design is OK (i.e. the patch is approved and committed), to do likewise for
each of the other targets. If that's done, the front end can finally be
changed.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.4/4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2011-10-27  9:39 ` burnus at gcc dot gnu.org
@ 2012-01-09 11:12 ` burnus at gcc dot gnu.org
  2012-06-22  2:07 ` [Bug fortran/42954] [4.5/4.6/4.7/4.8 " nightstrike at gmail dot com
                   ` (16 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-01-09 11:12 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P4                          |P5
   Target Milestone|4.7.0                       |4.8.0
            Summary|[4.5/4.6/4.7 regression]    |[4.4/4.5/4.6/4.7
                   |TARGET_*_CPP_BUILTINS       |regression]
                   |issues with gfortran        |TARGET_*_CPP_BUILTINS
                   |                            |issues with gfortran


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.5/4.6/4.7/4.8 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2012-01-09 11:12 ` [Bug fortran/42954] [4.4/4.5/4.6/4.7 " burnus at gcc dot gnu.org
@ 2012-06-22  2:07 ` nightstrike at gmail dot com
  2012-10-21 20:46 ` [Bug fortran/42954] [4.6/4.7/4.8 " janus at gcc dot gnu.org
                   ` (15 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: nightstrike at gmail dot com @ 2012-06-22  2:07 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #20 from nightstrike <nightstrike at gmail dot com> 2012-06-22 02:05:45 UTC ---
As we're in 4.8 now, consider this a friendly ping :)


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.6/4.7/4.8 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2012-06-22  2:07 ` [Bug fortran/42954] [4.5/4.6/4.7/4.8 " nightstrike at gmail dot com
@ 2012-10-21 20:46 ` janus at gcc dot gnu.org
  2013-03-22 14:44 ` [Bug fortran/42954] [4.6/4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (14 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: janus at gcc dot gnu.org @ 2012-10-21 20:46 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |earnie at users dot
                   |                            |sourceforge.net

--- Comment #21 from janus at gcc dot gnu.org 2012-10-21 20:46:07 UTC ---
*** Bug 55007 has been marked as a duplicate of this bug. ***


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.6/4.7/4.8/4.9 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (19 preceding siblings ...)
  2012-10-21 20:46 ` [Bug fortran/42954] [4.6/4.7/4.8 " janus at gcc dot gnu.org
@ 2013-03-22 14:44 ` jakub at gcc dot gnu.org
  2013-05-31 10:58 ` [Bug fortran/42954] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (13 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-03-22 14:44 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.0                       |4.8.1

--- Comment #22 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-03-22 14:43:14 UTC ---
GCC 4.8.0 is being released, adjusting target milestone.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.7/4.8/4.9 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (20 preceding siblings ...)
  2013-03-22 14:44 ` [Bug fortran/42954] [4.6/4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2013-05-31 10:58 ` jakub at gcc dot gnu.org
  2013-10-16  9:50 ` jakub at gcc dot gnu.org
                   ` (12 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-05-31 10:58 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.1                       |4.8.2

--- Comment #23 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.1 has been released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.7/4.8/4.9 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (21 preceding siblings ...)
  2013-05-31 10:58 ` [Bug fortran/42954] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2013-10-16  9:50 ` jakub at gcc dot gnu.org
  2014-05-22  9:03 ` [Bug fortran/42954] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (11 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-10-16  9:50 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.2                       |4.8.3

--- Comment #24 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.2 has been released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.7/4.8/4.9/4.10 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (22 preceding siblings ...)
  2013-10-16  9:50 ` jakub at gcc dot gnu.org
@ 2014-05-22  9:03 ` rguenth at gcc dot gnu.org
  2014-12-19 13:41 ` [Bug fortran/42954] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (10 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-05-22  9:03 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.3                       |4.8.4

--- Comment #25 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 4.8.3 is being released, adjusting target milestone.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.8/4.9/5 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (23 preceding siblings ...)
  2014-05-22  9:03 ` [Bug fortran/42954] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:41 ` jakub at gcc dot gnu.org
  2015-06-23  8:24 ` [Bug fortran/42954] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:41 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #26 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.8/4.9/5/6 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (24 preceding siblings ...)
  2014-12-19 13:41 ` [Bug fortran/42954] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-06-23  8:24 ` rguenth at gcc dot gnu.org
  2015-06-26 20:16 ` [Bug fortran/42954] [4.9/5/6 " jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:24 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.5                       |4.9.3

--- Comment #27 from Richard Biener <rguenth at gcc dot gnu.org> ---
The gcc-4_8-branch is being closed, re-targeting regressions to 4.9.3.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.9/5/6 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (25 preceding siblings ...)
  2015-06-23  8:24 ` [Bug fortran/42954] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
@ 2015-06-26 20:16 ` jakub at gcc dot gnu.org
  2015-06-26 20:37 ` jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:16 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #28 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [4.9/5/6 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (26 preceding siblings ...)
  2015-06-26 20:16 ` [Bug fortran/42954] [4.9/5/6 " jakub at gcc dot gnu.org
@ 2015-06-26 20:37 ` jakub at gcc dot gnu.org
  2021-05-14  9:46 ` [Bug fortran/42954] [9/10/11/12 " jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:37 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [9/10/11/12 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (27 preceding siblings ...)
  2015-06-26 20:37 ` jakub at gcc dot gnu.org
@ 2021-05-14  9:46 ` jakub at gcc dot gnu.org
  2021-06-01  8:04 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-05-14  9:46 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|8.5                         |9.4

--- Comment #33 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 8 branch is being closed.

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [9/10/11/12 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (28 preceding siblings ...)
  2021-05-14  9:46 ` [Bug fortran/42954] [9/10/11/12 " jakub at gcc dot gnu.org
@ 2021-06-01  8:04 ` rguenth at gcc dot gnu.org
  2021-06-01 13:43 ` longb at cray dot com
                   ` (4 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-01  8:04 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.4                         |9.5

--- Comment #34 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9.4 is being released, retargeting bugs to GCC 9.5.

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [9/10/11/12 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (29 preceding siblings ...)
  2021-06-01  8:04 ` rguenth at gcc dot gnu.org
@ 2021-06-01 13:43 ` longb at cray dot com
  2022-05-27  9:34 ` [Bug fortran/42954] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: longb at cray dot com @ 2021-06-01 13:43 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #35 from Bill Long <longb at cray dot com> ---
A lot of users have moved to the 10.X series of compilers, and the adventurous
ones to 11.X.  Will the fixes also appear in those compilers?

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [10/11/12/13 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (30 preceding siblings ...)
  2021-06-01 13:43 ` longb at cray dot com
@ 2022-05-27  9:34 ` rguenth at gcc dot gnu.org
  2022-06-28 10:29 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #36 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [10/11/12/13 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (31 preceding siblings ...)
  2022-05-27  9:34 ` [Bug fortran/42954] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:29 ` jakub at gcc dot gnu.org
  2022-12-19 14:36 ` pinskia at gcc dot gnu.org
  2023-07-07 10:29 ` [Bug fortran/42954] [11/12/13/14 regression] TARGET_*_CPP_BUILTINS issues with gfortran / Target macros missing (C preprocessor) rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 35+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #37 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [10/11/12/13 regression] TARGET_*_CPP_BUILTINS issues with gfortran
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (32 preceding siblings ...)
  2022-06-28 10:29 ` jakub at gcc dot gnu.org
@ 2022-12-19 14:36 ` pinskia at gcc dot gnu.org
  2023-07-07 10:29 ` [Bug fortran/42954] [11/12/13/14 regression] TARGET_*_CPP_BUILTINS issues with gfortran / Target macros missing (C preprocessor) rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 35+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-12-19 14:36 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

--- Comment #38 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 108175 has been marked as a duplicate of this bug. ***

^ permalink raw reply	[flat|nested] 35+ messages in thread

* [Bug fortran/42954] [11/12/13/14 regression] TARGET_*_CPP_BUILTINS issues with gfortran / Target macros missing (C preprocessor)
       [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
                   ` (33 preceding siblings ...)
  2022-12-19 14:36 ` pinskia at gcc dot gnu.org
@ 2023-07-07 10:29 ` rguenth at gcc dot gnu.org
  34 siblings, 0 replies; 35+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42954

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.5                        |11.5

--- Comment #39 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2023-07-07 10:29 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-42954-4@http.gcc.gnu.org/bugzilla/>
2010-09-26 16:47 ` [Bug fortran/42954] [4.5 regression] TARGET_*_CPP_BUILDINS issues with gfortran fxcoudert at gcc dot gnu.org
2010-09-26 17:47 ` fxcoudert at gcc dot gnu.org
2010-09-27 10:31 ` [Bug fortran/42954] [4.5/4.6 " burnus at gcc dot gnu.org
2010-09-30 12:22 ` rguenth at gcc dot gnu.org
2010-09-30 21:19 ` nightstrike at gmail dot com
2010-10-03 12:02 ` fxcoudert at gcc dot gnu.org
2010-10-07 10:51 ` fxcoudert at gcc dot gnu.org
2010-11-07 17:07 ` burnus at gcc dot gnu.org
2010-11-08  9:30 ` burnus at gcc dot gnu.org
2011-01-05 16:50 ` pinskia at gcc dot gnu.org
2011-03-15  8:59 ` [Bug fortran/42954] [4.5/4.6/4.7 " fxcoudert at gcc dot gnu.org
2011-03-18 15:48 ` jb at gcc dot gnu.org
2011-03-25 20:01 ` jakub at gcc dot gnu.org
2011-06-27 16:12 ` jakub at gcc dot gnu.org
2011-10-26 17:21 ` jakub at gcc dot gnu.org
2011-10-27  2:01 ` [Bug fortran/42954] [4.5/4.6/4.7 regression] TARGET_*_CPP_BUILTINS " nightstrike at gmail dot com
2011-10-27  9:39 ` burnus at gcc dot gnu.org
2012-01-09 11:12 ` [Bug fortran/42954] [4.4/4.5/4.6/4.7 " burnus at gcc dot gnu.org
2012-06-22  2:07 ` [Bug fortran/42954] [4.5/4.6/4.7/4.8 " nightstrike at gmail dot com
2012-10-21 20:46 ` [Bug fortran/42954] [4.6/4.7/4.8 " janus at gcc dot gnu.org
2013-03-22 14:44 ` [Bug fortran/42954] [4.6/4.7/4.8/4.9 " jakub at gcc dot gnu.org
2013-05-31 10:58 ` [Bug fortran/42954] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2013-10-16  9:50 ` jakub at gcc dot gnu.org
2014-05-22  9:03 ` [Bug fortran/42954] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:41 ` [Bug fortran/42954] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-06-23  8:24 ` [Bug fortran/42954] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
2015-06-26 20:16 ` [Bug fortran/42954] [4.9/5/6 " jakub at gcc dot gnu.org
2015-06-26 20:37 ` jakub at gcc dot gnu.org
2021-05-14  9:46 ` [Bug fortran/42954] [9/10/11/12 " jakub at gcc dot gnu.org
2021-06-01  8:04 ` rguenth at gcc dot gnu.org
2021-06-01 13:43 ` longb at cray dot com
2022-05-27  9:34 ` [Bug fortran/42954] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:29 ` jakub at gcc dot gnu.org
2022-12-19 14:36 ` pinskia at gcc dot gnu.org
2023-07-07 10:29 ` [Bug fortran/42954] [11/12/13/14 regression] TARGET_*_CPP_BUILTINS issues with gfortran / Target macros missing (C preprocessor) rguenth at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).