public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/38052]  New: genautomata segfaults when -O2 is enabled
@ 2008-11-07 15:33 r0bertz at gentoo dot org
  2008-11-07 15:42 ` [Bug c/38052] " r0bertz at gentoo dot org
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: r0bertz at gentoo dot org @ 2008-11-07 15:33 UTC (permalink / raw)
  To: gcc-bugs

I have done some detailed research on this problem. It is after the needed
information. Please do have a look.

The source is checked out on 2008-11-07

The system is using O32 abi.

The configure option is
var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/configure
--cache-file=./config.cache --with-stabs --prefix=/usr
--bindir=/usr/mipsel-unknown-linux-gnu/gcc-bin/4.4.0-pre9999
--includedir=/usr/lib/gcc/mipsel-unknown-linux-gnu/4.4.0-pre9999/include
--datadir=/usr/share/gcc-data/mipsel-unknown-linux-gnu/4.4.0-pre9999
--mandir=/usr/share/gcc-data/mipsel-unknown-linux-gnu/4.4.0-pre9999/man
--infodir=/usr/share/gcc-data/mipsel-unknown-linux-gnu/4.4.0-pre9999/info
--with-gxx-include-dir=/usr/lib/gcc/mipsel-unknown-linux-gnu/4.4.0-pre9999/include/g++-v4
--disable-altivec --disable-fixed-point --enable-nls --without-included-gettext
--with-system-zlib --disable-checking --disable-werror --enable-secureplt
--disable-multilib --enable-libmudflap --disable-libssp --disable-libgomp
--enable-cld --disable-libgcj --enable-shared --enable-threads=posix
--enable-__cxa_atexit --enable-clocale=gnu
--with-bugurl=http://bugs.gentoo.org/ --with-pkgversion= --enable-linux-futex
--enable-languages=c,c++ --program-transform-name=s,y,y,
--build=mipsel-unknown-linux-gnu --host=mipsel-unknown-linux-gnu
--target=mipsel-unknown-linux-gnu
--srcdir=/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc
--with-build-libsubdir=.

The command to build genautomata is:
/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/build/./prev-gcc/xgcc
-B/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/build/./prev-gcc/
-B/usr/mipsel-unknown-linux-gnu/bin/ -c  -O2 -g -pipe -DIN_GCC   -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual
-Wold-style-definition -Wc++-compat -Wmissing-format-attribute -pedantic
-Wno-long-long -Wno-variadic-macros -Wno-overlength-strings   -DHAVE_CONFIG_H
-DGENERATOR_FILE -I. -Ibuild
-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc
-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/build
-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/../include
-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/../libcpp/include

-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/../libdecnumber
-I/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/../libdecnumber/dpd
-I../libdecnumber  -DCLOOG_PPL_BACKEND   -o build/genautomata.o
/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/genautomata.c
/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/build/./prev-gcc/xgcc
-B/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/build/./prev-gcc/
-B/usr/mipsel-unknown-linux-gnu/bin/  -O2 -g -pipe -DIN_GCC   -W -Wall
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual
-Wold-style-definition -Wc++-compat -Wmissing-format-attribute -pedantic
-Wno-long-long -Wno-variadic-macros -Wno-overlength-strings   -DHAVE_CONFIG_H
-DGENERATOR_FILE  -o build/genautomata \
            build/genautomata.o build/rtl.o build/read-rtl.o build/ggc-none.o
build/vec.o build/min-insn-modes.o build/gensupport.o build/print-rtl.o
build/errors.o .././libiberty/libiberty.a -lm

The command segfaulted:
build/genautomata
/var/tmp/portage/sys-devel/gcc-4.4.0_pre9999/work/gcc-4.4.0-9999/gcc/config/mips/mips.md
insn-conditions.md


I have debugged this executable with gdb. And I found the exact instruction
which caused the segfaults. It has something to do with the manipulation of $gp
register.

>From readelf -a genautomata, the Canonical gp value of Primary GOT: 00440090

Normally before calling an function, the gp register must be loaded with this
value. This can be observed it compiled with no optimization option.

However if -O2 is enabled, the following code in genautomata.c:
6975   fprintf (output_file, "static const ");
6976   output_range_type (output_file, 0, automaton->insn_equiv_classes_num);
6977   fprintf (output_file, " ");
6978   output_translate_vect_name (output_file, automaton);
becomes(this is generated with -S option):
        lw      $28,16($sp)
        lw      $7,%lo(output_file)($17)
        lw      $25,%call16(fwrite)($28)
        lui     $4,%hi($LC171)
        addiu   $4,$4,%lo($LC171)
        li      $5,1                    # 0x1
        jalr    $25
        li      $6,13                   # 0xd

        lw      $6,16($18)
        lw      $4,%lo(output_file)($17)
        .option pic0
        jal     output_range_type
        .option pic2
        move    $5,$0

        lw      $28,16($sp)
        lw      $5,%lo(output_file)($17)
        lw      $25,%call16(fputc)($28)
        nop
        jalr    $25
        li      $4,32                   # 0x20

        lw      $4,%lo(output_file)($17)
        .option pic0
        jal     output_translate_vect_name
        .option pic2
        move    $5,$18
We can see there is no "lw      $28,16($sp)" before "jal     output_range_type"
or "jal     output_translate_vect_name"

In the case of output_range_type, there is no problem, because inside the
function, the only access to GOT is to find "fwrite"'s GOT entry. And the entry
already contains the resolved address, since immediately before the call to
output_range_type, there is a call to fwrite.

The problem with output_translate_vect_name is this function has two calls to
fprintf, and they are called for the first time in this program. So we need to
call the lazy resolver. And that's exactly where the program segfaults. Since
gp's value is incorrect, neither will be the resolver's address.

That's what I have got so far. Hope this could help to solve the problem.


-- 
           Summary: genautomata segfaults when -O2 is enabled
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: r0bertz at gentoo dot org
 GCC build triplet: mipsel-unknown-linux-gnu
  GCC host triplet: mipsel-unknown-linux-gnu
GCC target triplet: mipsel-unknown-linux-gnu


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


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

* [Bug c/38052] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
@ 2008-11-07 15:42 ` r0bertz at gentoo dot org
  2008-11-10 22:46 ` [Bug target/38052] [4.4 Regression] " pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: r0bertz at gentoo dot org @ 2008-11-07 15:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from r0bertz at gentoo dot org  2008-11-07 15:41 -------
(In reply to comment #0)
> The problem with output_translate_vect_name is this function has two calls to
> fprintf, and they are called for the first time in this program. 

Another thing I don't understand is why fprintf elsewhere is replaced with
fwrite including in the output_range_type function, but it is still itself in
output_translate_vect_name.

I have done an experiment. Please take a look at the beginning of
output_translate_vect_name function:
0x0040647c <output_translate_vect_name+0>:      addiu  sp,sp,-8
0x00406480 <output_translate_vect_name+4>:      lw     v0,4(a1)
0x00406484 <output_translate_vect_name+8>:      sw     gp,4(sp)
0x00406488 <output_translate_vect_name+12>:     lui    gp,0x44
0x0040648c <output_translate_vect_name+16>:     beqz   v0,0x4064b0
<output_translate_vect_name+52>
0x00406490 <output_translate_vect_name+20>:     addiu  gp,gp,4240
0x00406494 <output_translate_vect_name+24>:     lw     t9,-32532(gp)
0x00406498 <output_translate_vect_name+28>:     lui    a1,0x42
0x0040649c <output_translate_vect_name+32>:     lw     gp,4(sp)
0x004064a0 <output_translate_vect_name+36>:     lw     a2,0(v0)
0x004064a4 <output_translate_vect_name+40>:     addiu  a1,a1,-8008
0x004064a8 <output_translate_vect_name+44>:     jr     t9

If I replace the following instruction with nop, then the genautomata will
succeed.
0x0040649c <output_translate_vect_name+32>:     lw     gp,4(sp)


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
  2008-11-07 15:42 ` [Bug c/38052] " r0bertz at gentoo dot org
@ 2008-11-10 22:46 ` pinskia at gcc dot gnu dot org
  2008-11-12  1:02 ` kumba at gentoo dot org
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-11-10 22:46 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c                           |target
           Keywords|                            |build, wrong-code
            Summary|genautomata segfaults when -|[4.4 Regression] genautomata
                   |O2 is enabled               |segfaults when -O2 is
                   |                            |enabled
   Target Milestone|---                         |4.4.0


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
  2008-11-07 15:42 ` [Bug c/38052] " r0bertz at gentoo dot org
  2008-11-10 22:46 ` [Bug target/38052] [4.4 Regression] " pinskia at gcc dot gnu dot org
@ 2008-11-12  1:02 ` kumba at gentoo dot org
  2008-11-13  9:54 ` r0bertz at gentoo dot org
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kumba at gentoo dot org @ 2008-11-12  1:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from kumba at gentoo dot org  2008-11-12 01:01 -------
I ran into this too.  The problem flag is -foptimize-sibling-calls.  You can
pass that with -O1 to trigger the bug, but not with -O0.  Some other
optimization in -O1 seems to be mixing with this one and causing the flaw.

Ran into this on mips-unknown-linux-gnu, btw.  Mips-specific maybe?


-- 

kumba at gentoo dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kumba at gentoo dot org


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (2 preceding siblings ...)
  2008-11-12  1:02 ` kumba at gentoo dot org
@ 2008-11-13  9:54 ` r0bertz at gentoo dot org
  2008-11-13 11:38 ` r0bertz at gentoo dot org
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: r0bertz at gentoo dot org @ 2008-11-13  9:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from r0bertz at gentoo dot org  2008-11-13 09:53 -------
liblbxutil-1.0.1 package could be used to reproduce this bug.
I will investigate this later when i have time.


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (3 preceding siblings ...)
  2008-11-13  9:54 ` r0bertz at gentoo dot org
@ 2008-11-13 11:38 ` r0bertz at gentoo dot org
  2008-11-13 17:28 ` r0bertz at gentoo dot org
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: r0bertz at gentoo dot org @ 2008-11-13 11:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from r0bertz at gentoo dot org  2008-11-13 11:36 -------
and sed-4.1.5, too.


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (4 preceding siblings ...)
  2008-11-13 11:38 ` r0bertz at gentoo dot org
@ 2008-11-13 17:28 ` r0bertz at gentoo dot org
  2008-11-13 17:35 ` ebotcazou at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: r0bertz at gentoo dot org @ 2008-11-13 17:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from r0bertz at gentoo dot org  2008-11-13 17:27 -------
I am trying to find which specific flag or flags when used together with
-foptimize-sibling-calls could trigger this problem.
As the first step I tried to find a set of flags used together with -O0 and
-foptimize-sibling-calls could trigger this problem. Presumably this set of
flags should be those disabled at -O0 but enabled at -O1.

So I did the following to find the differences:
gcc -c -Q -O0 --help=optimizers > /tmp/O0-opts
gcc -c -Q -O1 --help=optimizers > /tmp/O1-opts
diff /tmp/O0-opts /tmp/O1-opts | grep enabled | cut -d " " -f 4

Then I used these flags with -O0 and -foptimize-sibling-calls together, but
this didn't trigger the bug.

Is there anything I have overlooked here?


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (5 preceding siblings ...)
  2008-11-13 17:28 ` r0bertz at gentoo dot org
@ 2008-11-13 17:35 ` ebotcazou at gcc dot gnu dot org
  2008-11-15 20:43 ` rsandifo at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-11-13 17:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from ebotcazou at gcc dot gnu dot org  2008-11-13 17:34 -------
> Then I used these flags with -O0 and -foptimize-sibling-calls together, but
> this didn't trigger the bug.
> 
> Is there anything I have overlooked here?

Yes, not all optimizations are controlled by a specific flag, as explained in
the manual.


-- 

ebotcazou 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=38052


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (6 preceding siblings ...)
  2008-11-13 17:35 ` ebotcazou at gcc dot gnu dot org
@ 2008-11-15 20:43 ` rsandifo at gcc dot gnu dot org
  2008-11-16 20:28 ` rsandifo at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2008-11-15 20:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rsandifo at gcc dot gnu dot org  2008-11-15 20:42 -------
I'll try to look at this tomorrow.  The code in comment #1 is certainly wrong:
the store at <output_translate_vect_name+8> is supposed come after the GP addiu
at <output_translate_vect_name+20>.  With that fixed, the function should work
as expected.

I'm guessing this is a scheduling bug, but time will tell.


-- 

rsandifo at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rsandifo at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-11-15 20:42:11
               date|                            |


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (7 preceding siblings ...)
  2008-11-15 20:43 ` rsandifo at gcc dot gnu dot org
@ 2008-11-16 20:28 ` rsandifo at gcc dot gnu dot org
  2008-11-16 20:34 ` rsandifo at gcc dot gnu dot org
  2008-11-16 21:10 ` rsandifo at gcc dot gnu dot org
  10 siblings, 0 replies; 12+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2008-11-16 20:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from rsandifo at gcc dot gnu dot org  2008-11-16 20:27 -------
Subject: Bug 38052

Author: rsandifo
Date: Sun Nov 16 20:25:40 2008
New Revision: 141925

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141925
Log:
gcc/
        PR target/38052
        * config/mips/mips.c (machine_function): Update the comment
        above global_pointer.
        (mips_global_pointer): Use INVALID_REGNUM rather than 0 to indicate
        that a function doesn't need a global pointer.
        (mips_current_loadgp_style): Update accordingly.
        (mips_restore_gp): Likewise.
        (mips_output_cplocal): Likewise.
        (mips_expand_prologue): Likewise.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/mips/mips.c


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (8 preceding siblings ...)
  2008-11-16 20:28 ` rsandifo at gcc dot gnu dot org
@ 2008-11-16 20:34 ` rsandifo at gcc dot gnu dot org
  2008-11-16 21:10 ` rsandifo at gcc dot gnu dot org
  10 siblings, 0 replies; 12+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2008-11-16 20:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from rsandifo at gcc dot gnu dot org  2008-11-16 20:32 -------
Subject: Bug 38052

Author: rsandifo
Date: Sun Nov 16 20:31:13 2008
New Revision: 141926

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141926
Log:
gcc/
        PR target/38052
        * config/mips/mips.c (mips_cfun_call_saved_reg_p)
        (mips_cfun_might_clobber_call_saved_reg_p): New functions,
        split out from...
        (mips_save_reg_p): ...here.  Always consult TARGET_CALL_SAVED_GP
        rather than call_really_used_regs when handling $gp.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/mips/mips.c


-- 


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


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

* [Bug target/38052] [4.4 Regression] genautomata segfaults when -O2 is enabled
  2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
                   ` (9 preceding siblings ...)
  2008-11-16 20:34 ` rsandifo at gcc dot gnu dot org
@ 2008-11-16 21:10 ` rsandifo at gcc dot gnu dot org
  10 siblings, 0 replies; 12+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2008-11-16 21:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from rsandifo at gcc dot gnu dot org  2008-11-16 21:08 -------
Fixed on mainline.


-- 

rsandifo at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2008-11-16 21:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-07 15:33 [Bug c/38052] New: genautomata segfaults when -O2 is enabled r0bertz at gentoo dot org
2008-11-07 15:42 ` [Bug c/38052] " r0bertz at gentoo dot org
2008-11-10 22:46 ` [Bug target/38052] [4.4 Regression] " pinskia at gcc dot gnu dot org
2008-11-12  1:02 ` kumba at gentoo dot org
2008-11-13  9:54 ` r0bertz at gentoo dot org
2008-11-13 11:38 ` r0bertz at gentoo dot org
2008-11-13 17:28 ` r0bertz at gentoo dot org
2008-11-13 17:35 ` ebotcazou at gcc dot gnu dot org
2008-11-15 20:43 ` rsandifo at gcc dot gnu dot org
2008-11-16 20:28 ` rsandifo at gcc dot gnu dot org
2008-11-16 20:34 ` rsandifo at gcc dot gnu dot org
2008-11-16 21:10 ` rsandifo 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).