public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization
@ 2010-11-24 10:18 d.g.gorbachev at gmail dot com
  2010-11-24 12:38 ` [Bug tree-optimization/46639] " rguenth at gcc dot gnu.org
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2010-11-24 10:18 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: [4.6 Regression] Missing optimization
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: d.g.gorbachev@gmail.com
              Host: i686-pc-linux-gnu
            Target: i686-pc-linux-gnu
             Build: i686-pc-linux-gnu


Created attachment 22507
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22507
testcase

gcc -O2 pr46639.c

/tmp/ccJzJXqb.o: In function `bar.part.0':
pr46639.c:(.text+0x30): undefined reference to `link_error'


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
@ 2010-11-24 12:38 ` rguenth at gcc dot gnu.org
  2010-11-24 16:42 ` jakub at gcc dot gnu.org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-11-24 12:38 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
           Keywords|                            |missed-optimization
   Last reconfirmed|                            |2010.11.24 12:18:23
                 CC|                            |hubicka at gcc dot gnu.org
     Ever Confirmed|0                           |1
   Target Milestone|---                         |4.6.0

--- Comment #1 from Richard Guenther <rguenth at gcc dot gnu.org> 2010-11-24 12:18:23 UTC ---
Hm, confirmed.  We don't clean up redundant conditionals before function
splitting:

  if (n_3(D) > 1023)
    goto <bb 9>;
  else
    goto <bb 3>;

  if (n_3(D) > 1023)
    goto <bb 4>;
  else
    goto <bb 7>;

and fnsplit considers splitting after the first one to be most beneficial.
And we don't inline it back together because
 Not inlining into bar:--param large-stack-frame-growth limit reached.
even though the original stack frame size is zero.

We didn't make the call in main direct either (ipa-reference runs too late
for that).

In the end this of course asks for more early optimizations.


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
  2010-11-24 12:38 ` [Bug tree-optimization/46639] " rguenth at gcc dot gnu.org
@ 2010-11-24 16:42 ` jakub at gcc dot gnu.org
  2011-01-03 20:26 ` rguenth at gcc dot gnu.org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-11-24 16:42 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-11-24 16:17:02 UTC ---
Well, scheduling one VRP pass could be expensive though and only VRP and DOM
are currently able to optimize these redundant tests away.

Perhaps if for the body of partially inlined functions we kept somewhere the
inlined test or at least its VRP properties, so that VRP pass could use them...

I wonder why in this case partial inlining does something, shouldn't
x > 1023 be predicted with the default predictors unlikely (thus the body be
likely)?


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
  2010-11-24 12:38 ` [Bug tree-optimization/46639] " rguenth at gcc dot gnu.org
  2010-11-24 16:42 ` jakub at gcc dot gnu.org
@ 2011-01-03 20:26 ` rguenth at gcc dot gnu.org
  2011-02-17 17:13 ` d.g.gorbachev at gmail dot com
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-01-03 20:26 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (2 preceding siblings ...)
  2011-01-03 20:26 ` rguenth at gcc dot gnu.org
@ 2011-02-17 17:13 ` d.g.gorbachev at gmail dot com
  2011-02-27 20:06 ` d.g.gorbachev at gmail dot com
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2011-02-17 17:13 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Dmitry Gorbachev <d.g.gorbachev at gmail dot com> 2011-02-17 17:02:20 UTC ---
I can't reproduce this bug now.


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (3 preceding siblings ...)
  2011-02-17 17:13 ` d.g.gorbachev at gmail dot com
@ 2011-02-27 20:06 ` d.g.gorbachev at gmail dot com
  2011-02-28  9:39 ` hubicka at gcc dot gnu.org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2011-02-27 20:06 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Dmitry Gorbachev <d.g.gorbachev at gmail dot com> 2011-02-27 19:56:55 UTC ---
Still fails with GCC version 4.6.0 20110226.


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

* [Bug tree-optimization/46639] [4.6 Regression] Missing optimization
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (4 preceding siblings ...)
  2011-02-27 20:06 ` d.g.gorbachev at gmail dot com
@ 2011-02-28  9:39 ` hubicka at gcc dot gnu.org
  2011-03-25 20:03 ` [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals jakub at gcc dot gnu.org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hubicka at gcc dot gnu.org @ 2011-02-28  9:39 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Jan Hubicka <hubicka at gcc dot gnu.org> 2011-02-28 09:25:28 UTC ---
There is no predictor predicting x > 1023 as unlikely, there is not much you
can easilly guess here ;(


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (5 preceding siblings ...)
  2011-02-28  9:39 ` hubicka at gcc dot gnu.org
@ 2011-03-25 20:03 ` jakub at gcc dot gnu.org
  2011-05-05 11:04 ` jakub at gcc dot gnu.org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 20:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (6 preceding siblings ...)
  2011-03-25 20:03 ` [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals jakub at gcc dot gnu.org
@ 2011-05-05 11:04 ` jakub at gcc dot gnu.org
  2011-05-05 11:06 ` jakub at gcc dot gnu.org
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-05-05 11:04 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-05-05 11:03:23 UTC ---
Another testcase:
http://gcc.gnu.org/bugzilla/attachment.cgi?id=24188
Richard suggests running pass_vrp_early instead of (or in addition to) pass_ccp
with some more expensive parts of VRP disabled.


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (7 preceding siblings ...)
  2011-05-05 11:04 ` jakub at gcc dot gnu.org
@ 2011-05-05 11:06 ` jakub at gcc dot gnu.org
  2011-06-27 16:27 ` jakub at gcc dot gnu.org
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-05-05 11:06 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |baryluk at smp dot
                   |                            |if.uj.edu.pl

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-05-05 10:56:28 UTC ---
*** Bug 48880 has been marked as a duplicate of this bug. ***


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (8 preceding siblings ...)
  2011-05-05 11:06 ` jakub at gcc dot gnu.org
@ 2011-06-27 16:27 ` jakub at gcc dot gnu.org
  2011-10-26 17:43 ` jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ 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=46639

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

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

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


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (9 preceding siblings ...)
  2011-06-27 16:27 ` jakub at gcc dot gnu.org
@ 2011-10-26 17:43 ` jakub at gcc dot gnu.org
  2012-03-01 15:10 ` jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-10-26 17:43 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (10 preceding siblings ...)
  2011-10-26 17:43 ` jakub at gcc dot gnu.org
@ 2012-03-01 15:10 ` jakub at gcc dot gnu.org
  2013-04-12 15:16 ` [Bug tree-optimization/46639] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-01 15:10 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug tree-optimization/46639] [4.7/4.8/4.9 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (11 preceding siblings ...)
  2012-03-01 15:10 ` jakub at gcc dot gnu.org
@ 2013-04-12 15:16 ` jakub at gcc dot gnu.org
  2014-01-23  7:08 ` law at redhat dot com
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:16 UTC (permalink / raw)
  To: gcc-bugs


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

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

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

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


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

* [Bug tree-optimization/46639] [4.7/4.8/4.9 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (12 preceding siblings ...)
  2013-04-12 15:16 ` [Bug tree-optimization/46639] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2014-01-23  7:08 ` law at redhat dot com
  2014-06-12 13:43 ` [Bug tree-optimization/46639] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: law at redhat dot com @ 2014-01-23  7:08 UTC (permalink / raw)
  To: gcc-bugs

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

Jeffrey A. Law <law at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at redhat dot com

--- Comment #13 from Jeffrey A. Law <law at redhat dot com> ---
Another approach would be to do some minimal redundancy elimination as part of
the into-ssa pass.  Having done it before, I know it's pretty easy.


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

* [Bug tree-optimization/46639] [4.7/4.8/4.9/4.10 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (13 preceding siblings ...)
  2014-01-23  7:08 ` law at redhat dot com
@ 2014-06-12 13:43 ` rguenth at gcc dot gnu.org
  2014-12-19 13:28 ` [Bug tree-optimization/46639] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:43 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #14 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] 20+ messages in thread

* [Bug tree-optimization/46639] [4.8/4.9/5 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (14 preceding siblings ...)
  2014-06-12 13:43 ` [Bug tree-optimization/46639] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:28 ` jakub at gcc dot gnu.org
  2015-06-23  8:20 ` [Bug tree-optimization/46639] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:28 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

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


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

* [Bug tree-optimization/46639] [4.8/4.9/5/6 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (15 preceding siblings ...)
  2014-12-19 13:28 ` [Bug tree-optimization/46639] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-06-23  8:20 ` rguenth at gcc dot gnu.org
  2015-06-26 19:57 ` [Bug tree-optimization/46639] [4.9/5/6 " jakub at gcc dot gnu.org
  2015-06-26 20:28 ` jakub at gcc dot gnu.org
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:20 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #16 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] 20+ messages in thread

* [Bug tree-optimization/46639] [4.9/5/6 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (16 preceding siblings ...)
  2015-06-23  8:20 ` [Bug tree-optimization/46639] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
@ 2015-06-26 19:57 ` jakub at gcc dot gnu.org
  2015-06-26 20:28 ` jakub at gcc dot gnu.org
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 19:57 UTC (permalink / raw)
  To: gcc-bugs

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

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


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

* [Bug tree-optimization/46639] [4.9/5/6 Regression] Missing optimization due to function splitting and redundant conditionals
  2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
                   ` (17 preceding siblings ...)
  2015-06-26 19:57 ` [Bug tree-optimization/46639] [4.9/5/6 " jakub at gcc dot gnu.org
@ 2015-06-26 20:28 ` jakub at gcc dot gnu.org
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:28 UTC (permalink / raw)
  To: gcc-bugs

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

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

end of thread, other threads:[~2015-06-26 20:28 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-24 10:18 [Bug tree-optimization/46639] New: [4.6 Regression] Missing optimization d.g.gorbachev at gmail dot com
2010-11-24 12:38 ` [Bug tree-optimization/46639] " rguenth at gcc dot gnu.org
2010-11-24 16:42 ` jakub at gcc dot gnu.org
2011-01-03 20:26 ` rguenth at gcc dot gnu.org
2011-02-17 17:13 ` d.g.gorbachev at gmail dot com
2011-02-27 20:06 ` d.g.gorbachev at gmail dot com
2011-02-28  9:39 ` hubicka at gcc dot gnu.org
2011-03-25 20:03 ` [Bug tree-optimization/46639] [4.6/4.7 Regression] Missing optimization due to function splitting and redundant conditionals jakub at gcc dot gnu.org
2011-05-05 11:04 ` jakub at gcc dot gnu.org
2011-05-05 11:06 ` jakub at gcc dot gnu.org
2011-06-27 16:27 ` jakub at gcc dot gnu.org
2011-10-26 17:43 ` jakub at gcc dot gnu.org
2012-03-01 15:10 ` jakub at gcc dot gnu.org
2013-04-12 15:16 ` [Bug tree-optimization/46639] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2014-01-23  7:08 ` law at redhat dot com
2014-06-12 13:43 ` [Bug tree-optimization/46639] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:28 ` [Bug tree-optimization/46639] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-06-23  8:20 ` [Bug tree-optimization/46639] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
2015-06-26 19:57 ` [Bug tree-optimization/46639] [4.9/5/6 " jakub at gcc dot gnu.org
2015-06-26 20:28 ` jakub 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).