public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
@ 2008-01-01 17:43 ` rguenth at gcc dot gnu dot org
  2008-01-02 23:24 ` mmitchel at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-01-01 17:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2008-01-01 17:42 -------
I see different IL for 4.2 compared to 4.3, is the bug present in 4.3?  Can you
attach the optimized tree dump?


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu dot
                   |                            |org
   Target Milestone|4.3.0                       |4.2.3


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
  2008-01-01 17:43 ` [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM rguenth at gcc dot gnu dot org
@ 2008-01-02 23:24 ` mmitchel at gcc dot gnu dot org
  2008-01-03 18:10 ` tbm at cyrius dot com
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2008-01-02 23:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from mmitchel at gcc dot gnu dot org  2008-01-02 23:14 -------
Put into WAITING state until the information requested in Comment #2 is
available.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
  2008-01-01 17:43 ` [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM rguenth at gcc dot gnu dot org
  2008-01-02 23:24 ` mmitchel at gcc dot gnu dot org
@ 2008-01-03 18:10 ` tbm at cyrius dot com
  2008-01-03 18:18 ` tbm at cyrius dot com
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-03 18:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from tbm at cyrius dot com  2008-01-03 18:03 -------
Bugzilla wraps the testcase in a way that some commented out is no longer
commented out and so you don't see the segfault.  Here's the testcase again
with proper wrapping:

typedef unsigned short u16;
typedef unsigned char u8;

static void
do_segfault(u8 in_buf[], const u8 out_buf[], const int len)
{
  int i;

  for (i = 0; i < len; i++) {
    //SSVAL(in_buf, 2*i, SVAL(out_buf,2*i)); // more or less just a
                                             // byte-wise memcpy

    asm("nop\n");

    in_buf[2*i] = (   out_buf[2*i] | out_buf[(2*i)+1]<<8  ) & 0xFF;
 // in_buf[2*i] = out_buf[2*i];

    asm("nop\n");

    in_buf[(2*i)+1] =  ( out_buf[2*i] | out_buf[(2*i)+1]<<8 ) >> 8;
 // in_buf[(2*i)+1] = out_buf[(2*i)+1];

    asm("nop\n");
  }
}

int main(int argc, char *argv[])
{
  u8 outbuf[32] = "buffer     ";
  u8 inbuf[32] = "\f";

  asm("nop\n");
  do_segfault(inbuf, outbuf, 12);
  asm("nop\n");

  return 0;
}


-- 


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2008-01-03 18:10 ` tbm at cyrius dot com
@ 2008-01-03 18:18 ` tbm at cyrius dot com
  2008-01-03 18:23 ` tbm at cyrius dot com
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-03 18:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from tbm at cyrius dot com  2008-01-03 18:07 -------
Created an attachment (id=14870)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14870&action=view)
optimized tree dump (4.2)


-- 


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2008-01-03 18:18 ` tbm at cyrius dot com
@ 2008-01-03 18:23 ` tbm at cyrius dot com
  2008-01-03 18:59 ` tbm at cyrius dot com
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-03 18:23 UTC (permalink / raw)
  To: gcc-bugs



-- 

tbm at cyrius dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |UNCONFIRMED


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2008-01-03 18:23 ` tbm at cyrius dot com
@ 2008-01-03 18:59 ` tbm at cyrius dot com
  2008-01-03 19:51 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-03 18:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from tbm at cyrius dot com  2008-01-03 18:22 -------
(In reply to comment #2)
> I see different IL for 4.2 compared to 4.3, is the bug present in 4.3?  Can you
> attach the optimized tree dump?

I also get a segfault with the testcase and 4.3.0 20070916.

The original program (samba) compiled with 4.2 shows bad code (smbclient
returning 'string length'+1 of the first character of the share name rather
than the share name) whereas it segfaults when compiled with 4.3.


-- 


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2008-01-03 18:59 ` tbm at cyrius dot com
@ 2008-01-03 19:51 ` rguenth at gcc dot gnu dot org
  2008-01-03 21:53 ` rakdver at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-01-03 19:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2008-01-03 18:58 -------
The final tree IL looks good, so I suspect the RTL loop optimizer gets this
wrong.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rakdver at gcc dot gnu dot
                   |                            |org
           Keywords|                            |wrong-code


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2008-01-03 19:51 ` rguenth at gcc dot gnu dot org
@ 2008-01-03 21:53 ` rakdver at gcc dot gnu dot org
  2008-01-09 16:35 ` rguenth at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rakdver at gcc dot gnu dot org @ 2008-01-03 21:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from rakdver at gcc dot gnu dot org  2008-01-03 21:23 -------
(In reply to comment #7)
> The final tree IL looks good, so I suspect the RTL loop optimizer gets this
> wrong.
> 

>  add     r1, sp, #56 // upper loop-bound; should have been #12
>  I actually wanted to say 'should have been #24' :-)

This insn is actually correct, r1 = &outbuf + 24.  The missing increment of r4
seems to be the problem.  Post-increment is created for r4, but it disappears
in the combine pass.  Does not seem to be loop optimizer related.


-- 

rakdver at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-01-03 21:23:36
               date|                            |


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


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

* [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2008-01-03 21:53 ` rakdver at gcc dot gnu dot org
@ 2008-01-09 16:35 ` rguenth at gcc dot gnu dot org
  2008-01-09 17:17 ` [Bug rtl-optimization/34628] " ebotcazou at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-01-09 16:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from rguenth at gcc dot gnu dot org  2008-01-09 15:56 -------
Trying someone else - Eric, any clue about post-increment?


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ebotcazou at gcc dot gnu dot
                   |                            |org


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2008-01-09 16:35 ` rguenth at gcc dot gnu dot org
@ 2008-01-09 17:17 ` ebotcazou at gcc dot gnu dot org
  2008-01-10 14:37 ` ebotcazou at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-09 17:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from ebotcazou at gcc dot gnu dot org  2008-01-09 16:34 -------
Will take a look.


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|ebotcazou at gcc dot gnu dot|
                   |org                         |
         AssignedTo|unassigned at gcc dot gnu   |ebotcazou at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
          Component|target                      |rtl-optimization
   Last reconfirmed|2008-01-03 21:23:36         |2008-01-09 16:34:46
               date|                            |


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2008-01-09 17:17 ` [Bug rtl-optimization/34628] " ebotcazou at gcc dot gnu dot org
@ 2008-01-10 14:37 ` ebotcazou at gcc dot gnu dot org
  2008-01-11  8:53 ` jakub at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-10 14:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from ebotcazou at gcc dot gnu dot org  2008-01-10 14:03 -------
Created an attachment (id=14907)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14907&action=view)
Lightly tested fix.

I'll give it a whirl on IA-64 but it would be nice to test it on ARM too.


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2008-01-10 14:37 ` ebotcazou at gcc dot gnu dot org
@ 2008-01-11  8:53 ` jakub at gcc dot gnu dot org
  2008-01-11 23:32 ` tbm at cyrius dot com
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-01-11  8:53 UTC (permalink / raw)
  To: gcc-bugs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2008-01-11  8:53 ` jakub at gcc dot gnu dot org
@ 2008-01-11 23:32 ` tbm at cyrius dot com
  2008-01-21 13:03 ` tbm at cyrius dot com
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-11 23:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from tbm at cyrius dot com  2008-01-11 22:01 -------
(In reply to comment #11)
> Created an attachment (id=14907)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14907&action=view) [edit]
> Lightly tested fix.
> 
> I'll give it a whirl on IA-64 but it would be nice to test it on ARM too.

I'm away from my machine for another week.  Paul, do you think you could
bootstrap and regtest the patch on ARM?


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2008-01-11 23:32 ` tbm at cyrius dot com
@ 2008-01-21 13:03 ` tbm at cyrius dot com
  2008-01-21 14:39 ` ebotcazou at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-21 13:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from tbm at cyrius dot com  2008-01-21 12:31 -------
(In reply to comment #11)
> Created an attachment (id=14907)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14907&action=view) [edit]
> Lightly tested fix.
> 
> I'll give it a whirl on IA-64 but it would be nice to test it on ARM too.

Eric, was your testing successful?  I'll give it a go on ARM now.


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2008-01-21 13:03 ` tbm at cyrius dot com
@ 2008-01-21 14:39 ` ebotcazou at gcc dot gnu dot org
  2008-01-22 11:07 ` tbm at cyrius dot com
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-21 14:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from ebotcazou at gcc dot gnu dot org  2008-01-21 14:25 -------
> Eric, was your testing successful?

Yes, everything is clean on the IA-64.

> I'll give it a go on ARM now.

Thanks in advance.


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2008-01-21 14:39 ` ebotcazou at gcc dot gnu dot org
@ 2008-01-22 11:07 ` tbm at cyrius dot com
  2008-01-22 12:07 ` ebotcazou at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: tbm at cyrius dot com @ 2008-01-22 11:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from tbm at cyrius dot com  2008-01-22 10:49 -------
I've now successfully bootstrapped and regtested this change with trunk on
ARM.  I enabled c,c++,fortran,objc,obj-c++,treelang.

There are no regressions and the segfault is gone.

Eric, can you please submit the patch?

Thanks.


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2008-01-22 11:07 ` tbm at cyrius dot com
@ 2008-01-22 12:07 ` ebotcazou at gcc dot gnu dot org
  2008-01-22 22:48 ` ebotcazou at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-22 12:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from ebotcazou at gcc dot gnu dot org  2008-01-22 11:39 -------
> I've now successfully bootstrapped and regtested this change with trunk on
> ARM.  I enabled c,c++,fortran,objc,obj-c++,treelang.
> 
> There are no regressions and the segfault is gone.

Great!

> Eric, can you please submit the patch?

I can even directly install it. :-)


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2008-01-22 12:07 ` ebotcazou at gcc dot gnu dot org
@ 2008-01-22 22:48 ` ebotcazou at gcc dot gnu dot org
  2008-01-22 22:56 ` ebotcazou at gcc dot gnu dot org
  2008-01-22 22:58 ` ebotcazou at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-22 22:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from ebotcazou at gcc dot gnu dot org  2008-01-22 22:28 -------
Subject: Bug 34628

Author: ebotcazou
Date: Tue Jan 22 22:27:47 2008
New Revision: 131744

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131744
Log:
        PR rtl-optimization/34628
        * combine.c (try_combine): Stop and undo after the first combination
        if an autoincrement side-effect on the first insn has effectively
        been lost.


Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/20080122-1.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/combine.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2008-01-22 22:48 ` ebotcazou at gcc dot gnu dot org
@ 2008-01-22 22:56 ` ebotcazou at gcc dot gnu dot org
  2008-01-22 22:58 ` ebotcazou at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-22 22:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from ebotcazou at gcc dot gnu dot org  2008-01-22 22:29 -------
Subject: Bug 34628

Author: ebotcazou
Date: Tue Jan 22 22:29:04 2008
New Revision: 131745

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131745
Log:
        PR rtl-optimization/34628
        * combine.c (try_combine): Stop and undo after the first combination
        if an autoincrement side-effect on the first insn has effectively
        been lost.


Added:
    branches/gcc-4_2-branch/gcc/testsuite/gcc.c-torture/execute/20080122-1.c
Modified:
    branches/gcc-4_2-branch/gcc/ChangeLog
    branches/gcc-4_2-branch/gcc/combine.c
    branches/gcc-4_2-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug rtl-optimization/34628] [4.2/4.3 Regression] problems with inlining on ARM
       [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2008-01-22 22:56 ` ebotcazou at gcc dot gnu dot org
@ 2008-01-22 22:58 ` ebotcazou at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-01-22 22:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 from ebotcazou at gcc dot gnu dot org  2008-01-22 22:32 -------
.


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2008-
                   |                            |01/msg01049.html
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2008-01-22 22:33 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-34628-12387@http.gcc.gnu.org/bugzilla/>
2008-01-01 17:43 ` [Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM rguenth at gcc dot gnu dot org
2008-01-02 23:24 ` mmitchel at gcc dot gnu dot org
2008-01-03 18:10 ` tbm at cyrius dot com
2008-01-03 18:18 ` tbm at cyrius dot com
2008-01-03 18:23 ` tbm at cyrius dot com
2008-01-03 18:59 ` tbm at cyrius dot com
2008-01-03 19:51 ` rguenth at gcc dot gnu dot org
2008-01-03 21:53 ` rakdver at gcc dot gnu dot org
2008-01-09 16:35 ` rguenth at gcc dot gnu dot org
2008-01-09 17:17 ` [Bug rtl-optimization/34628] " ebotcazou at gcc dot gnu dot org
2008-01-10 14:37 ` ebotcazou at gcc dot gnu dot org
2008-01-11  8:53 ` jakub at gcc dot gnu dot org
2008-01-11 23:32 ` tbm at cyrius dot com
2008-01-21 13:03 ` tbm at cyrius dot com
2008-01-21 14:39 ` ebotcazou at gcc dot gnu dot org
2008-01-22 11:07 ` tbm at cyrius dot com
2008-01-22 12:07 ` ebotcazou at gcc dot gnu dot org
2008-01-22 22:48 ` ebotcazou at gcc dot gnu dot org
2008-01-22 22:56 ` ebotcazou at gcc dot gnu dot org
2008-01-22 22:58 ` ebotcazou at gcc dot gnu dot 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).