public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
@ 2011-05-10 15:37 mariah.lenox at gmail dot com
  2011-05-10 15:47 ` [Bug c/48949] " mariah.lenox at gmail dot com
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: mariah.lenox at gmail dot com @ 2011-05-10 15:37 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: gcc-4.6.0 regression with complex.h on
                    i386-pc-solaris2.10
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mariah.lenox@gmail.com


/* gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10

% gcc -c foo.c
foo.c: In function ‘foo’:
foo.c:5:11: error: ‘_Imaginary_I’ undeclared (first use in this function)
foo.c:5:11: note: each undeclared identifier is reported only once for each
function it appears in
%
% gcc-4.5.1 -c foo.c
%
% gcc -v 
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/local/gcc-4.6.0/x86_64-SunOS-core2/libexec/gcc/i386-pc-solaris2.10/4.6.0/lto-wrapper
Target: i386-pc-solaris2.10
Configured with: /usr/local/gcc-4.6.0/src/gcc-4.6.0/configure
--enable-languages=c,c++,fortran --with-gnu-as
--with-as=/usr/local/binutils-2.21/x86_64-SunOS-gccc-4.5.1/bin/as --with-gnu-ld
--with-ld=/usr/local/binutils-2.21/x86_64-SunOS-gccc-4.5.1/bin/ld
--with-gmp=/usr/local/mpir-2.3.0/x86_64-SunOS-core2-gcc-4.5.1-abi32
--with-mpfr=/usr/local/mpfr-3.0.0/x86_64-SunOS-core2-mpir-2.3.0-gcc-4.5.1-abi32
--with-mpc=/usr/local/mpc-0.9/x86_64-SunOS-core2-mpir-2.3.0-mpfr-3.0.0-gcc-4.5.1-abi32
--prefix=/usr/local/gcc-4.6.0/x86_64-SunOS-core2
Thread model: posix
gcc version 4.6.0 (GCC) 
%
*/

#include <complex.h>

double _Complex
foo () {
   return I;
}


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

* [Bug c/48949] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
@ 2011-05-10 15:47 ` mariah.lenox at gmail dot com
  2011-05-10 16:02 ` [Bug target/48949] [4.6/4.7 Regression] " jsm28 at gcc dot gnu.org
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: mariah.lenox at gmail dot com @ 2011-05-10 15:47 UTC (permalink / raw)
  To: gcc-bugs

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

Mariah Lenox <mariah.lenox at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |i386-pc-solaris2.10
      Known to work|                            |4.5.1
               Host|                            |i386-pc-solaris2.10
      Known to fail|                            |4.6.0
              Build|                            |i386-pc-solaris2.10
           Severity|normal                      |critical

--- Comment #1 from Mariah Lenox <mariah.lenox at gmail dot com> 2011-05-10 15:37:00 UTC ---
Found while trying to compile mpc-0.9 with gcc-4.6.0.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
  2011-05-10 15:47 ` [Bug c/48949] " mariah.lenox at gmail dot com
@ 2011-05-10 16:02 ` jsm28 at gcc dot gnu.org
  2011-05-19 12:56 ` jakub at gcc dot gnu.org
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2011-05-10 16:02 UTC (permalink / raw)
  To: gcc-bugs

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

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c                           |target
   Target Milestone|---                         |4.6.1
            Summary|gcc-4.6.0 regression with   |[4.6/4.7 Regression]
                   |complex.h on                |gcc-4.6.0 regression with
                   |i386-pc-solaris2.10         |complex.h on
                   |                            |i386-pc-solaris2.10

--- Comment #2 from Joseph S. Myers <jsm28 at gcc dot gnu.org> 2011-05-10 15:57:13 UTC ---
I can't confirm whether this problem exists or is a regression, but if it does
then it's a fixincludes bug since fixincludes (fix solaris_complex) is supposed
to make the system complex.h header suitable for GCC.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
  2011-05-10 15:47 ` [Bug c/48949] " mariah.lenox at gmail dot com
  2011-05-10 16:02 ` [Bug target/48949] [4.6/4.7 Regression] " jsm28 at gcc dot gnu.org
@ 2011-05-19 12:56 ` jakub at gcc dot gnu.org
  2011-06-27 16:27 ` jakub at gcc dot gnu.org
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-05-19 12:56 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2011.05.19 12:37:15
                 CC|                            |jakub at gcc dot gnu.org
     Ever Confirmed|0                           |1
           Severity|critical                    |normal

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-05-19 12:37:15 UTC ---
Can you see if fixincluded complex.h is used, or for some reason the system one
instead?  If the former, can you diff up the system one and the fixincluded
one?
You can run gcc -E foo.c | grep complex.h to see which complex.h is being used.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (2 preceding siblings ...)
  2011-05-19 12:56 ` jakub at gcc dot gnu.org
@ 2011-06-27 16:27 ` jakub at gcc dot gnu.org
  2011-10-10 11:50 ` rguenth at gcc dot gnu.org
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-06-27 16:27 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (3 preceding siblings ...)
  2011-06-27 16:27 ` jakub at gcc dot gnu.org
@ 2011-10-10 11:50 ` rguenth at gcc dot gnu.org
  2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-10-10 11:50 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |INVALID

--- Comment #5 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-10-10 11:48:44 UTC ---
No answers.  Closing.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (5 preceding siblings ...)
  2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
@ 2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
  2011-11-02 13:19 ` mariah.lenox at gmail dot com
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ebotcazou at gcc dot gnu.org @ 2011-11-01 18:18 UTC (permalink / raw)
  To: gcc-bugs

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

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |ebotcazou at gcc dot
                   |                            |gnu.org
         Resolution|INVALID                     |

--- Comment #7 from Eric Botcazou <ebotcazou at gcc dot gnu.org> 2011-11-01 18:17:31 UTC ---
Please answer comment #3.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (4 preceding siblings ...)
  2011-10-10 11:50 ` rguenth at gcc dot gnu.org
@ 2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
  2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: ebotcazou at gcc dot gnu.org @ 2011-11-01 18:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Eric Botcazou <ebotcazou at gcc dot gnu.org> 2011-11-01 18:16:49 UTC ---
*** Bug 50944 has been marked as a duplicate of this bug. ***


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (6 preceding siblings ...)
  2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
@ 2011-11-02 13:19 ` mariah.lenox at gmail dot com
  2012-01-12 20:26 ` pinskia at gcc dot gnu.org
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: mariah.lenox at gmail dot com @ 2011-11-02 13:19 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Mariah Lenox <mariah.lenox at gmail dot com> 2011-11-02 13:18:52 UTC ---
> Please answer comment #3.

Answers provided on bug report 50944.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (7 preceding siblings ...)
  2011-11-02 13:19 ` mariah.lenox at gmail dot com
@ 2012-01-12 20:26 ` pinskia at gcc dot gnu.org
  2012-01-14 10:35 ` jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-01-12 20:26 UTC (permalink / raw)
  To: gcc-bugs

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

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

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


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (8 preceding siblings ...)
  2012-01-12 20:26 ` pinskia at gcc dot gnu.org
@ 2012-01-14 10:35 ` jakub at gcc dot gnu.org
  2012-01-19 12:37 ` rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-01-14 10:35 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-01-14 10:20:34 UTC ---
(In reply to comment #8)
> > Please answer comment #3.
> 
> Answers provided on bug report 50944.

Clearly the system complex.h is being used, does that mean that the header
hasn't been fixincluded at all?  The diff is against a wrong header, you are
diffing system complex.h against C++.
Can you look into your logs if you have message like:
Applying solaris_complex          to complex.h
in your build log?  Can you look into your build tree if you have
gcc/include-fixed/complex.h
header?  Did it get installed?
/usr/local/gcc-4.6.0/x86_64-SunOS-core2/lib/gcc/i386-pc-solaris2.10/4.6.0/include-fixed/complex.h
would be the installed location of the file.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (9 preceding siblings ...)
  2012-01-14 10:35 ` jakub at gcc dot gnu.org
@ 2012-01-19 12:37 ` rguenth at gcc dot gnu.org
  2012-01-19 21:37 ` mariah.lenox at gmail dot com
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-01-19 12:37 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
             Status|REOPENED                    |WAITING

--- Comment #10 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-01-19 12:21:32 UTC ---
i386-pc-solaris2.10 is neither primary nor secondary target.  And we are
still waiting for answers.


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (10 preceding siblings ...)
  2012-01-19 12:37 ` rguenth at gcc dot gnu.org
@ 2012-01-19 21:37 ` mariah.lenox at gmail dot com
  2012-01-19 22:03 ` mariah.lenox at gmail dot com
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: mariah.lenox at gmail dot com @ 2012-01-19 21:37 UTC (permalink / raw)
  To: gcc-bugs

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

Mariah Lenox <mariah.lenox at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.6.2

--- Comment #11 from Mariah Lenox <mariah.lenox at gmail dot com> 2012-01-19 20:48:33 UTC ---
I get this bug on 

sparc-sun-solaris2.8
sparc-sun-solaris2.10
i386-pc-solaris2.10

> Can you look into your logs if you have message like:
> Applying solaris_complex          to complex.h
> in your build log?

Yes, this message appears in my build log:

: Quoted includes in mps/secport.h
: Applying solaris_complex          to complex.h
: Applying solaris_complex_cxx      to complex.h
: /opt/sfw/bin/gsed: -e expression #1, char 33: Extra characters after command
: Applying math_exception           to math.h

> Can you look into your build tree if you have
> gcc/include-fixed/complex.h header?

It does NOT exist:

% pwd
/usr/local/gcc-4.6.2/src/obj-x86_64-SunOS-k8/gcc/include-fixed
% ls
README        curses.h      math.h        sys/          zconf.h
X11@          dat/          mps/          syslimits.h
Xm@           iso/          pthread.h     wchar.h
arpa/         limits.h      root/         xil@
%

>Did it get installed?
> /usr/local/gcc-4.6.0/x86_64-SunOS-core2/lib/gcc/i386-pc-solaris2.10/4.6.0/include-fixed/complex.h
> would be the installed location of the file. 

It did NOT get installed:

% pwd
/usr/local/gcc-4.6.2/x86_64-SunOS-k8/lib/gcc/i386-pc-solaris2.10/4.6.2/include-fixed
% ls
README        curses.h      math.h        sys/          zconf.h
X11@          dat/          mps/          syslimits.h
Xm@           iso/          pthread.h     wchar.h
arpa/         limits.h      root/         xil@
% 
%
% gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/local/gcc-4.6.2/x86_64-SunOS-k8/libexec/gcc/i386-pc-solaris2.10/4.6.2/lto-wrapper
Target: i386-pc-solaris2.10
Configured with: /usr/local/gcc-4.6.2/src/gcc-4.6.2/configure
--enable-languages=c --with-gnu-as
--with-as=/usr/local/binutils-2.21.1/x86_64-SunOS-k8-gcc-4.6.1-without-zlib/bin/as
--with-gnu-ld
--with-ld=/usr/local/binutils-2.21.1/x86_64-SunOS-k8-gcc-4.6.1-without-zlib/bin/ld
--with-gmp=/usr/local/gmp-5.0.2/x86_64-SunOS-k8-gcc-4.6.0-abi32
--with-mpfr=/usr/local/mpfr-3.1.0/x86_64-SunOS-k8-gmp-5.0.2-gcc-4.6.1-abi32
--with-mpc=/usr/local/mpc-0.9/x86_64-SunOS-k8-gmp-5.0.2-mpfr-3.1.0-gcc-4.5.3-abi32
--prefix=/usr/local/gcc-4.6.2/x86_64-SunOS-k8
Thread model: posix
gcc version 4.6.2 (GCC) 
%


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (11 preceding siblings ...)
  2012-01-19 21:37 ` mariah.lenox at gmail dot com
@ 2012-01-19 22:03 ` mariah.lenox at gmail dot com
  2012-01-19 22:15 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: mariah.lenox at gmail dot com @ 2012-01-19 22:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from Mariah Lenox <mariah.lenox at gmail dot com> 2012-01-19 21:07:21 UTC ---
Further information from i386-pc-solaris2.10 machine

% /opt/sfw/bin/gsed --version
GNU sed version 3.02

On my sparc-sun-solaris2.10 machine, I have

: Fixed:  wchar.h
: Applying solaris_complex          to complex.h
: Applying solaris_complex_cxx      to complex.h
: sed: command garbled: /#if[     ]*!defined(__cplusplus)/c#ifdef __cplusplus\
: extern "C" {\
: #endif
: Applying math_exception           to math.h


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (12 preceding siblings ...)
  2012-01-19 22:03 ` mariah.lenox at gmail dot com
@ 2012-01-19 22:15 ` jakub at gcc dot gnu.org
  2012-03-01 15:21 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-01-19 22:15 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-01-19 21:37:14 UTC ---
Sed 3.02 is over 13 years old!  Do you have the
http://gcc.gnu.org/ml/gcc-patches/2011-05/msg01110.html
fix in your tree?


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

* [Bug target/48949] [4.6/4.7 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (13 preceding siblings ...)
  2012-01-19 22:15 ` jakub at gcc dot gnu.org
@ 2012-03-01 15:21 ` jakub at gcc dot gnu.org
  2013-04-12 15:18 ` [Bug target/48949] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
  2013-12-11 15:15 ` ebotcazou at gcc dot gnu.org
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-01 15:21 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #14 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-03-01 14:39:11 UTC ---
GCC 4.6.3 is being released.


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

* [Bug target/48949] [4.7/4.8/4.9 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (14 preceding siblings ...)
  2012-03-01 15:21 ` jakub at gcc dot gnu.org
@ 2013-04-12 15:18 ` jakub at gcc dot gnu.org
  2013-12-11 15:15 ` ebotcazou at gcc dot gnu.org
  16 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:18 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.4                       |4.7.4

--- Comment #15 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 15:17:07 UTC ---
GCC 4.6.4 has been released and the branch has been closed.


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

* [Bug target/48949] [4.7/4.8/4.9 Regression] gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10
  2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
                   ` (15 preceding siblings ...)
  2013-04-12 15:18 ` [Bug target/48949] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2013-12-11 15:15 ` ebotcazou at gcc dot gnu.org
  16 siblings, 0 replies; 18+ messages in thread
From: ebotcazou at gcc dot gnu.org @ 2013-12-11 15:15 UTC (permalink / raw)
  To: gcc-bugs

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

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #16 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
No feedback.


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

end of thread, other threads:[~2013-12-11 15:15 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-10 15:37 [Bug c/48949] New: gcc-4.6.0 regression with complex.h on i386-pc-solaris2.10 mariah.lenox at gmail dot com
2011-05-10 15:47 ` [Bug c/48949] " mariah.lenox at gmail dot com
2011-05-10 16:02 ` [Bug target/48949] [4.6/4.7 Regression] " jsm28 at gcc dot gnu.org
2011-05-19 12:56 ` jakub at gcc dot gnu.org
2011-06-27 16:27 ` jakub at gcc dot gnu.org
2011-10-10 11:50 ` rguenth at gcc dot gnu.org
2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
2011-11-01 18:18 ` ebotcazou at gcc dot gnu.org
2011-11-02 13:19 ` mariah.lenox at gmail dot com
2012-01-12 20:26 ` pinskia at gcc dot gnu.org
2012-01-14 10:35 ` jakub at gcc dot gnu.org
2012-01-19 12:37 ` rguenth at gcc dot gnu.org
2012-01-19 21:37 ` mariah.lenox at gmail dot com
2012-01-19 22:03 ` mariah.lenox at gmail dot com
2012-01-19 22:15 ` jakub at gcc dot gnu.org
2012-03-01 15:21 ` jakub at gcc dot gnu.org
2013-04-12 15:18 ` [Bug target/48949] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2013-12-11 15:15 ` ebotcazou 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).