public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/37135]  New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct
@ 2008-08-15 21:22 etienne_lorrain at yahoo dot fr
  2008-08-15 21:28 ` [Bug middle-end/37135] code size increase for bit-fields assignment pinskia at gcc dot gnu dot org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-08-15 21:22 UTC (permalink / raw)
  To: gcc-bugs

file test.c:
----------------------
enum stdcolor_enum {
    black,    blue,         green,      cyan,
    red,      magenta,      brown,      lightgray,
    darkgray, lightblue,    lightgreen, lightcyan,
    lightred, lightmagenta, yellow,     white
    };

union mouse_color_union {
    struct mouse_color_str {
        unsigned deflt              : 4;
        unsigned leftbutton         : 4;
        unsigned rightbutton        : 4;
        unsigned middlebutton       : 4;
        unsigned topbutton          : 4;
        unsigned twobutton          : 4;
        unsigned invalid            : 4;
        unsigned infield            : 4;
        } colors;
    unsigned all;
    } conf;

const union mouse_color_union MOUSE_reset_colors = { .colors = {
    .deflt =            brown,
    .leftbutton =       red,
    .rightbutton =      green,
    .middlebutton =     lightcyan,
    .topbutton =        cyan,
    .twobutton =        magenta,
    .invalid =          black,
    .infield =          magenta,
    }};

void fct (void)
{
    conf = MOUSE_reset_colors;
}
----------------------
$ gcc-4.2 --version
gcc-4.2 (GCC) 4.2.4 (Debian 4.2.4-3)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ gcc-4.2 -Os -c test.c -o test.o-4.2
$ size test.o-4.2
   text    data     bss     dec     hex filename
     19       0       0      19      13 test.o-4.2
$ gcc-4.3 --version
gcc-4.3 (Debian 4.3.1-9) 4.3.1
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ gcc-4.3 -Os -c test.c -o test.o-4.3
$ size test.o-4.3
   text    data     bss     dec     hex filename
     56       0       0      56      38 test.o-4.3

Basically, the assembler lines in gcc-4.2:
        movl    MOUSE_reset_colors, %eax
        movl    %eax, conf
becomes in 4.3:
        movl    $0, conf
        movb    conf+3, %al
        movb    $70, conf
        andl    $15, %eax
        orl     $80, %eax
        movb    $-78, conf+1
        movb    $83, conf+2
        movb    %al, conf+3
which looks like a regression.

Thanks, etienne.


-- 
           Summary: code size increase from gcc-4.2.4-3 to 4.3.1-9 for
                    simple fct
           Product: gcc
           Version: 4.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: etienne_lorrain at yahoo dot fr
 GCC build triplet: debian
  GCC host triplet: i386-linux-debian
GCC target triplet: i386-linux-debian


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


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

* [Bug middle-end/37135] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
@ 2008-08-15 21:28 ` pinskia at gcc dot gnu dot org
  2008-08-17 19:32 ` [Bug middle-end/37135] [4.3/4.4 Regression] " etienne_lorrain at yahoo dot fr
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-08-15 21:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-08-15 21:26 -------
The gimplifier is inlining the value of MOUSE_reset_colors for some reason ...

Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |missed-optimization
   Last reconfirmed|0000-00-00 00:00:00         |2008-08-15 21:26:55
               date|                            |
   Target Milestone|---                         |4.3.2


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
  2008-08-15 21:28 ` [Bug middle-end/37135] code size increase for bit-fields assignment pinskia at gcc dot gnu dot org
@ 2008-08-17 19:32 ` etienne_lorrain at yahoo dot fr
  2008-08-22 15:33 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-08-17 19:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from etienne_lorrain at yahoo dot fr  2008-08-17 19:31 -------
 It is not related to bitfields, this also show the problem:
struct color { unsigned char red, green, blue, transparent; } cur_color;
static const struct color mycolor = { 200, 10, 30, 0 };
void fct(void)
{
    cur_color = mycolor;
}
 with gcc-4.3.1 cur_color is initialised with 4 "movb" (so address is encoded 4
times)
 and with gcc-4.2 with a 32 bits constant and a single "movl".

 It seems to be the old problem of gcc not having a "write combining" pass
(converting consecutive byte/word writes into single double word writes), and
the "fix" of defining an intermediate variable is no more working.


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
  2008-08-15 21:28 ` [Bug middle-end/37135] code size increase for bit-fields assignment pinskia at gcc dot gnu dot org
  2008-08-17 19:32 ` [Bug middle-end/37135] [4.3/4.4 Regression] " etienne_lorrain at yahoo dot fr
@ 2008-08-22 15:33 ` rguenth at gcc dot gnu dot org
  2008-08-24  9:14 ` etienne_lorrain at yahoo dot fr
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-08-22 15:33 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (2 preceding siblings ...)
  2008-08-22 15:33 ` rguenth at gcc dot gnu dot org
@ 2008-08-24  9:14 ` etienne_lorrain at yahoo dot fr
  2008-08-27 22:13 ` jsm28 at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-08-24  9:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from etienne_lorrain at yahoo dot fr  2008-08-24 09:13 -------
 Moreover, if in the first test.c program, you declare variable "conf"
volatile,
the assembly generated contains 8 writes to "conf", and that memory location
is *read* 7 times. If "conf" does not point to memory but to memory mapped I/O
ports (maybe not readable), that is invalid code generated for valid input.


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (3 preceding siblings ...)
  2008-08-24  9:14 ` etienne_lorrain at yahoo dot fr
@ 2008-08-27 22:13 ` jsm28 at gcc dot gnu dot org
  2008-11-21 15:30 ` jakub at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-08-27 22:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jsm28 at gcc dot gnu dot org  2008-08-27 22:05 -------
4.3.2 is released, changing milestones to 4.3.3.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.2                       |4.3.3


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (4 preceding siblings ...)
  2008-08-27 22:13 ` jsm28 at gcc dot gnu dot org
@ 2008-11-21 15:30 ` jakub at gcc dot gnu dot org
  2008-11-21 16:12 ` etienne_lorrain at yahoo dot fr
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-11-21 15:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jakub at gcc dot gnu dot org  2008-11-21 15:29 -------
4.4 compiles this (at least at -O2) into:
        movb    $70, conf
        movb    $-78, conf+1
        movb    $83, conf+2
        movb    $80, conf+3
so this looks then as a dup of PR22141.  Testcase without the unnecessary
enum etc.:
union U
{
  struct
  {
    unsigned f1 : 4;
    unsigned f2 : 4;
    unsigned f3 : 4;
    unsigned f4 : 4;
    unsigned f5 : 4;
    unsigned f6 : 4;
    unsigned f7 : 4;
    unsigned f8 : 4;
  } f;
  unsigned g;
} u;

const union U def = { .f = { .f1 = 6, .f2 = 4, .f3 = 2, .f4 = 11,
     .f5 = 3, .f6 = 5, .f7 = 0, .f8 = 5 } };

void fn1 (void)
{
  u = def;
}

void fn3 (union U *);
void fn2 (void)
{
  union U v = def;
  fn3 (&v);
}


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (5 preceding siblings ...)
  2008-11-21 15:30 ` jakub at gcc dot gnu dot org
@ 2008-11-21 16:12 ` etienne_lorrain at yahoo dot fr
  2008-11-21 16:23 ` jakub at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-11-21 16:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from etienne_lorrain at yahoo dot fr  2008-11-21 16:10 -------
 By trying to declare:
volatile union U u;
 In your Testcase without the unnecessary enum, the "u = def;" is compiled as:
        movl    $0, u

        movl    u, %eax
        andl    $-16, %eax
        orl     $6, %eax
        movl    %eax, u

        movl    u, %eax
        andb    $15, %al
        orl     $64, %eax
        movl    %eax, u

        movl    u, %eax
        andb    $240, %ah
        orb     $2, %ah
        movl    %eax, u

        movl    u, %eax
        andb    $15, %ah
        orb     $176, %ah
        movl    %eax, u

        movl    u, %eax
        andl    $-983041, %eax
        orl     $196608, %eax
        movl    %eax, u

        movl    u, %eax
        andl    $-15728641, %eax
        orl     $5242880, %eax
        movl    %eax, u

        movl    u, %eax
        andl    $268435455, %eax
        orl     $1342177280, %eax
        movl    %eax, u

 By gcc version 4.3.2 (Debian 4.3.2-1) on i486-linux-gnu at -O2.


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (6 preceding siblings ...)
  2008-11-21 16:12 ` etienne_lorrain at yahoo dot fr
@ 2008-11-21 16:23 ` jakub at gcc dot gnu dot org
  2008-11-21 17:47 ` etienne_lorrain at yahoo dot fr
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-11-21 16:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jakub at gcc dot gnu dot org  2008-11-21 16:21 -------
For structure assignments to volatile structures you really can't have any
expectations how many individual stores will be done.  I guess that falls
under:
What constitutes an access to an object that has volatile-qualified type is
implementation-defined.


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (7 preceding siblings ...)
  2008-11-21 16:23 ` jakub at gcc dot gnu dot org
@ 2008-11-21 17:47 ` etienne_lorrain at yahoo dot fr
  2008-11-21 22:18 ` jakub at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-11-21 17:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from etienne_lorrain at yahoo dot fr  2008-11-21 17:45 -------
 The number of writes for that volatile structure may or may not be a problem,
I am more concerned by the number of reads of some memory which may not be
readable at all.


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (8 preceding siblings ...)
  2008-11-21 17:47 ` etienne_lorrain at yahoo dot fr
@ 2008-11-21 22:18 ` jakub at gcc dot gnu dot org
  2008-11-24 13:00 ` jakub at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-11-21 22:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from jakub at gcc dot gnu dot org  2008-11-21 22:17 -------
Then don't use bitfields...


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (9 preceding siblings ...)
  2008-11-21 22:18 ` jakub at gcc dot gnu dot org
@ 2008-11-24 13:00 ` jakub at gcc dot gnu dot org
  2008-11-24 22:02 ` etienne_lorrain at yahoo dot fr
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-11-24 13:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jakub at gcc dot gnu dot org  2008-11-24 12:59 -------
Subject: Bug 37135

Author: jakub
Date: Mon Nov 24 12:57:37 2008
New Revision: 142157

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=142157
Log:
        PR middle-end/37135
        * dse.c (find_shift_sequence): Optimize extraction from a constant.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/dse.c


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (10 preceding siblings ...)
  2008-11-24 13:00 ` jakub at gcc dot gnu dot org
@ 2008-11-24 22:02 ` etienne_lorrain at yahoo dot fr
  2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: etienne_lorrain at yahoo dot fr @ 2008-11-24 22:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from etienne_lorrain at yahoo dot fr  2008-11-24 22:01 -------
> URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=142157
> Modified: trunk/gcc/dse.c

 I am using gcc-core-4.4-20081121.tar.bz2 with ia32-linux (Fedora9) and
applying your patch gives a better assembly, but still not the possible
"mov $0x12345678,address" - I still get 4 movb on my test.c or your testcase.
 Maybe I shall get the latest SVN, or there is more files to patch than dse.c?
$ size test.o-4.4
   text    data     bss     dec     hex filename
     37       0       0      37      25 test.o-4.4


-- 


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for bit-fields assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (11 preceding siblings ...)
  2008-11-24 22:02 ` etienne_lorrain at yahoo dot fr
@ 2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
  2009-02-03 14:23 ` [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment bonzini at gnu dot org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 10:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from rguenth at gcc dot gnu dot org  2009-01-24 10:20 -------
GCC 4.3.3 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.3                       |4.3.4


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (12 preceding siblings ...)
  2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
@ 2009-02-03 14:23 ` bonzini at gnu dot org
  2009-02-03 14:30 ` bonzini at gnu dot org
  2009-11-25  9:40 ` jakub at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: bonzini at gnu dot org @ 2009-02-03 14:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from bonzini at gnu dot org  2009-02-03 14:23 -------
Adjusting subject, the testcase from comment #2 still produces suboptimal code.


-- 

bonzini at gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bonzini at gnu dot org
   Last reconfirmed|2008-08-15 21:26:55         |2009-02-03 14:23:13
               date|                            |
            Summary|[4.3/4.4 Regression] code   |[4.3/4.4 Regression] code
                   |size increase for bit-fields|size increase for struct
                   |assignment                  |assignment


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (13 preceding siblings ...)
  2009-02-03 14:23 ` [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment bonzini at gnu dot org
@ 2009-02-03 14:30 ` bonzini at gnu dot org
  2009-11-25  9:40 ` jakub at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: bonzini at gnu dot org @ 2009-02-03 14:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from bonzini at gnu dot org  2009-02-03 14:30 -------
what remains is a dup of 22141.

*** This bug has been marked as a duplicate of 22141 ***


-- 

bonzini at gnu dot org changed:

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


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


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

* [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment
  2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
                   ` (14 preceding siblings ...)
  2009-02-03 14:30 ` bonzini at gnu dot org
@ 2009-11-25  9:40 ` jakub at gcc dot gnu dot org
  15 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-11-25  9:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from jakub at gcc dot gnu dot org  2009-11-25 09:40 -------
*** Bug 42172 has been marked as a duplicate of this bug. ***


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |carrot at google dot com


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


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

end of thread, other threads:[~2009-11-25  9:40 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-15 21:22 [Bug c/37135] New: code size increase from gcc-4.2.4-3 to 4.3.1-9 for simple fct etienne_lorrain at yahoo dot fr
2008-08-15 21:28 ` [Bug middle-end/37135] code size increase for bit-fields assignment pinskia at gcc dot gnu dot org
2008-08-17 19:32 ` [Bug middle-end/37135] [4.3/4.4 Regression] " etienne_lorrain at yahoo dot fr
2008-08-22 15:33 ` rguenth at gcc dot gnu dot org
2008-08-24  9:14 ` etienne_lorrain at yahoo dot fr
2008-08-27 22:13 ` jsm28 at gcc dot gnu dot org
2008-11-21 15:30 ` jakub at gcc dot gnu dot org
2008-11-21 16:12 ` etienne_lorrain at yahoo dot fr
2008-11-21 16:23 ` jakub at gcc dot gnu dot org
2008-11-21 17:47 ` etienne_lorrain at yahoo dot fr
2008-11-21 22:18 ` jakub at gcc dot gnu dot org
2008-11-24 13:00 ` jakub at gcc dot gnu dot org
2008-11-24 22:02 ` etienne_lorrain at yahoo dot fr
2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
2009-02-03 14:23 ` [Bug middle-end/37135] [4.3/4.4 Regression] code size increase for struct assignment bonzini at gnu dot org
2009-02-03 14:30 ` bonzini at gnu dot org
2009-11-25  9:40 ` jakub 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).