public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
@ 2010-09-30 13:03 ` rguenth at gcc dot gnu.org
  2010-10-14 18:31 ` ro at gcc dot gnu.org
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-09-30 13:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |accepts-invalid,
                   |                            |ice-on-invalid-code
             Target|                            |i?86-*-*
           Priority|P3                          |P2
                 CC|                            |meissner at gcc dot gnu.org
          Component|middle-end                  |target
      Known to work|                            |

--- Comment #10 from Richard Guenther <rguenth at gcc dot gnu.org> 2010-09-30 11:32:34 UTC ---
Target bug.  ix86_valid_target_attribute_p should reject "sse" if that
changes the mode of any type.  Thus, declaring the testcase as-is invalid.

The same issue is at least latent with 4.5, making this P2.


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
  2010-09-30 13:03 ` [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586 rguenth at gcc dot gnu.org
@ 2010-10-14 18:31 ` ro at gcc dot gnu.org
  2010-10-17 14:24 ` davek at gcc dot gnu.org
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: ro at gcc dot gnu.org @ 2010-10-14 18:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Rainer Orth <ro at gcc dot gnu.org> 2010-10-14 18:31:31 UTC ---
*** Bug 46025 has been marked as a duplicate of this bug. ***


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
  2010-09-30 13:03 ` [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586 rguenth at gcc dot gnu.org
  2010-10-14 18:31 ` ro at gcc dot gnu.org
@ 2010-10-17 14:24 ` davek at gcc dot gnu.org
  2011-01-28 15:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: davek at gcc dot gnu.org @ 2010-10-17 14:24 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from Dave Korn <davek at gcc dot gnu.org> 2010-10-17 14:24:06 UTC ---
This also breaks lto-bootstrap on i686-pc-cygwin:

/gnu/gcc/gcc/libcpp/lex.c: In function ‘search_line_sse2’:
/gnu/gcc/gcc/libcpp/lex.c:370:15: internal compiler error: in convert_move, at
expr.c:326

In the call to convert_move, we have:

to = (reg/v:V16QI 62 [ repl_nl ])
from = (mem/u/c:BLK (reg/f:SI 97) [0 MEM[(const v16qi *)&repl_chars]+0 S16
A128])


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2010-10-17 14:24 ` davek at gcc dot gnu.org
@ 2011-01-28 15:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2011-01-28 15:33 ` rguenth at gcc dot gnu.org
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-01-28 15:29 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-01-28 15:15:37 UTC ---
Is this going to be fixed for 4.6.0 or should we XFAIL the test?  This
PR has been open for 5 months now.

    Rainer


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2011-01-28 15:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2011-01-28 15:33 ` rguenth at gcc dot gnu.org
  2011-01-28 15:39 ` davek at gcc dot gnu.org
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-01-28 15:33 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-01-28 15:19:23 UTC ---
The test is invalid on i[345]86-*-* without also enabling -msse.  A fix is to
add

/* { dg-options "-msse" { target i[345]86-*-* } } */

probably also for x86_64 with -m32.  Or simply unconditionally as it is a
x86 specific test anyway.

A fix for the bug would instead issue a diagnostic.


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2011-01-28 15:33 ` rguenth at gcc dot gnu.org
@ 2011-01-28 15:39 ` davek at gcc dot gnu.org
  2011-01-28 15:45 ` rguenther at suse dot de
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: davek at gcc dot gnu.org @ 2011-01-28 15:39 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #15 from Dave Korn <davek at gcc dot gnu.org> 2011-01-28 15:28:33 UTC ---
(In reply to comment #14)
> The test is invalid on i[345]86-*-* without also enabling -msse.

  Does the same apply to libcpp/lex.c?  i.e. Is that code invalid unless
compiled with -msse2?  LTO bootstrap with arch=i686,tune=generic was still
broken last time I checked.


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2011-01-28 15:39 ` davek at gcc dot gnu.org
@ 2011-01-28 15:45 ` rguenther at suse dot de
  2011-01-31 14:59 ` ro at gcc dot gnu.org
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: rguenther at suse dot de @ 2011-01-28 15:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #16 from rguenther at suse dot de <rguenther at suse dot de> 2011-01-28 15:32:50 UTC ---
On Fri, 28 Jan 2011, davek at gcc dot gnu.org wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45325
> 
> --- Comment #15 from Dave Korn <davek at gcc dot gnu.org> 2011-01-28 15:28:33 UTC ---
> (In reply to comment #14)
> > The test is invalid on i[345]86-*-* without also enabling -msse.
> 
>   Does the same apply to libcpp/lex.c?  i.e. Is that code invalid unless
> compiled with -msse2?  LTO bootstrap with arch=i686,tune=generic was still
> broken last time I checked.

Yes.  The code should be #ifdefed out when -msse is not enabled.

Richard.


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2011-01-28 15:45 ` rguenther at suse dot de
@ 2011-01-31 14:59 ` ro at gcc dot gnu.org
  2011-01-31 15:38 ` ro at gcc dot gnu.org
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: ro at gcc dot gnu.org @ 2011-01-31 14:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #17 from Rainer Orth <ro at gcc dot gnu.org> 2011-01-31 14:27:45 UTC ---
That works.  Patch submitted:

http://gcc.gnu.org/ml/gcc-patches/2011-01/msg02297.html


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2011-01-31 14:59 ` ro at gcc dot gnu.org
@ 2011-01-31 15:38 ` ro at gcc dot gnu.org
  2011-02-02 18:26 ` dnovillo at gcc dot gnu.org
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: ro at gcc dot gnu.org @ 2011-01-31 15:38 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #18 from Rainer Orth <ro at gcc dot gnu.org> 2011-01-31 14:56:35 UTC ---
Author: ro
Date: Mon Jan 31 14:56:31 2011
New Revision: 169440

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=169440
Log:
    PR target/45325
    * gcc.target/i386/pr38240.c: Add dg-options "-msse".

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/i386/pr38240.c


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

* [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2011-01-31 15:38 ` ro at gcc dot gnu.org
@ 2011-02-02 18:26 ` dnovillo at gcc dot gnu.org
  2011-03-25 20:07 ` [Bug target/45325] [4.6/4.7 " jakub at gcc dot gnu.org
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: dnovillo at gcc dot gnu.org @ 2011-02-02 18:26 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #19 from Diego Novillo <dnovillo at gcc dot gnu.org> 2011-02-02 18:11:44 UTC ---
Author: dnovillo
Date: Wed Feb  2 18:11:36 2011
New Revision: 169720

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=169720
Log:
    PR target/45325
    * gcc.target/i386/pr38240.c: Add dg-options "-msse".

Modified:
    branches/google/integration/gcc/testsuite/ChangeLog
    branches/google/integration/gcc/testsuite/gcc.target/i386/pr38240.c


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

* [Bug target/45325] [4.6/4.7 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2011-02-02 18:26 ` dnovillo at gcc dot gnu.org
@ 2011-03-25 20:07 ` jakub at gcc dot gnu.org
  2011-06-27 16:21 ` jakub at gcc dot gnu.org
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 20:07 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug target/45325] [4.6/4.7 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2011-03-25 20:07 ` [Bug target/45325] [4.6/4.7 " jakub at gcc dot gnu.org
@ 2011-06-27 16:21 ` jakub at gcc dot gnu.org
  2011-10-26 18:15 ` jakub at gcc dot gnu.org
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-06-27 16:21 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug target/45325] [4.6/4.7 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2011-06-27 16:21 ` jakub at gcc dot gnu.org
@ 2011-10-26 18:15 ` jakub at gcc dot gnu.org
  2012-03-01 15:32 ` jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-10-26 18:15 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug target/45325] [4.6/4.7 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2011-10-26 18:15 ` jakub at gcc dot gnu.org
@ 2012-03-01 15:32 ` jakub at gcc dot gnu.org
  2013-04-12 15:21 ` [Bug target/45325] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-01 15:32 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug target/45325] [4.7/4.8/4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2012-03-01 15:32 ` jakub at gcc dot gnu.org
@ 2013-04-12 15:21 ` jakub at gcc dot gnu.org
  2014-06-12 13:49 ` [Bug target/45325] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:21 UTC (permalink / raw)
  To: gcc-bugs


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

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

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

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


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

* [Bug target/45325] [4.7/4.8/4.9/4.10 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2013-04-12 15:21 ` [Bug target/45325] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2014-06-12 13:49 ` rguenth at gcc dot gnu.org
  2014-12-19 13:34 ` [Bug target/45325] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:49 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #25 from Richard Biener <rguenth at gcc dot gnu.org> ---
The 4.7 branch is being closed, moving target milestone to 4.8.4.


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

* [Bug target/45325] [4.8/4.9/5 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2014-06-12 13:49 ` [Bug target/45325] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:34 ` jakub at gcc dot gnu.org
  2015-02-24 11:23 ` [Bug target/45325] [4.8/4.9 " jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:34 UTC (permalink / raw)
  To: gcc-bugs

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

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] 22+ messages in thread

* [Bug target/45325] [4.8/4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2014-12-19 13:34 ` [Bug target/45325] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-02-24 11:23 ` jakub at gcc dot gnu.org
  2015-06-23  8:28 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-02-24 11:23 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org
      Known to work|                            |5.0
            Summary|[4.8/4.9/5 Regression]      |[4.8/4.9 Regression] target
                   |target attribute doesn't    |attribute doesn't work with
                   |work with -march=i586       |-march=i586

--- Comment #27 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
The ICE is gone with r220609 aka PR61925 fix.


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

* [Bug target/45325] [4.8/4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2015-02-24 11:23 ` [Bug target/45325] [4.8/4.9 " jakub at gcc dot gnu.org
@ 2015-06-23  8:28 ` rguenth at gcc dot gnu.org
  2015-06-26 20:04 ` [Bug target/45325] [4.9 " jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:28 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #28 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] 22+ messages in thread

* [Bug target/45325] [4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2015-06-23  8:28 ` rguenth at gcc dot gnu.org
@ 2015-06-26 20:04 ` jakub at gcc dot gnu.org
  2015-06-26 20:32 ` jakub at gcc dot gnu.org
  2021-11-29  6:47 ` pinskia at gcc dot gnu.org
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:04 UTC (permalink / raw)
  To: gcc-bugs

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

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


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

* [Bug target/45325] [4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (19 preceding siblings ...)
  2015-06-26 20:04 ` [Bug target/45325] [4.9 " jakub at gcc dot gnu.org
@ 2015-06-26 20:32 ` jakub at gcc dot gnu.org
  2021-11-29  6:47 ` pinskia at gcc dot gnu.org
  21 siblings, 0 replies; 22+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:32 UTC (permalink / raw)
  To: gcc-bugs

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

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] 22+ messages in thread

* [Bug target/45325] [4.9 Regression] target attribute doesn't work with -march=i586
       [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
                   ` (20 preceding siblings ...)
  2015-06-26 20:32 ` jakub at gcc dot gnu.org
@ 2021-11-29  6:47 ` pinskia at gcc dot gnu.org
  21 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-11-29  6:47 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45325
Bug 45325 depends on bug 37565, which changed state.

Bug 37565 Summary: __optimize__  attribute doesn't work correctly
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37565

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

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

end of thread, other threads:[~2021-11-29  6:47 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-45325-4@http.gcc.gnu.org/bugzilla/>
2010-09-30 13:03 ` [Bug target/45325] [4.6 Regression] target attribute doesn't work with -march=i586 rguenth at gcc dot gnu.org
2010-10-14 18:31 ` ro at gcc dot gnu.org
2010-10-17 14:24 ` davek at gcc dot gnu.org
2011-01-28 15:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
2011-01-28 15:33 ` rguenth at gcc dot gnu.org
2011-01-28 15:39 ` davek at gcc dot gnu.org
2011-01-28 15:45 ` rguenther at suse dot de
2011-01-31 14:59 ` ro at gcc dot gnu.org
2011-01-31 15:38 ` ro at gcc dot gnu.org
2011-02-02 18:26 ` dnovillo at gcc dot gnu.org
2011-03-25 20:07 ` [Bug target/45325] [4.6/4.7 " jakub at gcc dot gnu.org
2011-06-27 16:21 ` jakub at gcc dot gnu.org
2011-10-26 18:15 ` jakub at gcc dot gnu.org
2012-03-01 15:32 ` jakub at gcc dot gnu.org
2013-04-12 15:21 ` [Bug target/45325] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2014-06-12 13:49 ` [Bug target/45325] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:34 ` [Bug target/45325] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-02-24 11:23 ` [Bug target/45325] [4.8/4.9 " jakub at gcc dot gnu.org
2015-06-23  8:28 ` rguenth at gcc dot gnu.org
2015-06-26 20:04 ` [Bug target/45325] [4.9 " jakub at gcc dot gnu.org
2015-06-26 20:32 ` jakub at gcc dot gnu.org
2021-11-29  6:47 ` pinskia 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).