public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/32300]  New: ICE with -O2 -fsee
@ 2007-06-12 11:35 wouter dot vermaelen at scarlet dot be
  2007-06-12 12:36 ` [Bug rtl-optimization/32300] [4.3 Regression] " rguenth at gcc dot gnu dot org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: wouter dot vermaelen at scarlet dot be @ 2007-06-12 11:35 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 755 bytes --]

> cat bug.ii
struct vector {
        int *start, *finish;
        unsigned long size() { return finish - start; }
};
void f(vector& v) {
        for (unsigned i = 0; i < v.size(); ++i);
}

> g++ -O2 -fsee bug.ii
bug.ii: In function ‘void f(vector&)’:
bug.ii:7: internal compiler error: Segmentation fault

This started failing in the last couple of days.
I'm compiling on linux_x86_64.


-- 
           Summary: ICE with -O2 -fsee
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: wouter dot vermaelen at scarlet dot be


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
@ 2007-06-12 12:36 ` rguenth at gcc dot gnu dot org
  2007-06-12 12:40 ` rguenth at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-12 12:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from rguenth at gcc dot gnu dot org  2007-06-12 12:36 -------
Confirmed.  A dataflow merge fallout probably:

Program received signal SIGSEGV, Segmentation fault.
0x00000000007c449c in df_insn_refs_verify (collection_rec=0x7fff1ab011c0, 
    bb=0x2aec90911360, insn=0x2aec9074dfa0, abort_if_fail=1 '\001')
    at /space/rguenther/src/svn/trunk/gcc/df-scan.c:4148
4148      if (!DF_INSN_UID_DEFS (uid))


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zadeck at naturalbridge dot
                   |                            |com
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-06-12 12:36:27
               date|                            |
            Summary|ICE with -O2 -fsee          |[4.3 Regression] ICE with -
                   |                            |O2 -fsee
   Target Milestone|---                         |4.3.0


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
  2007-06-12 12:36 ` [Bug rtl-optimization/32300] [4.3 Regression] " rguenth at gcc dot gnu dot org
@ 2007-06-12 12:40 ` rguenth at gcc dot gnu dot org
  2007-06-12 12:46 ` zadeck at naturalbridge dot com
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-12 12:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2007-06-12 12:40 -------
FYI

(gdb) bt
#0  0x00000000007c449c in df_insn_refs_verify (collection_rec=0x7ffff0a74130, 
    bb=0x2aaeba99e360, insn=0x2aaeba7dafa0, abort_if_fail=1 '\001')
    at /space/rguenther/src/svn/trunk/gcc/df-scan.c:4148
#1  0x00000000007c4717 in df_bb_verify (bb=0x2aaeba99e360)
    at /space/rguenther/src/svn/trunk/gcc/df-scan.c:4195
#2  0x00000000007c4bf4 in df_scan_verify ()
    at /space/rguenther/src/svn/trunk/gcc/df-scan.c:4334
#3  0x00000000007b1f56 in df_verify ()
    at /space/rguenther/src/svn/trunk/gcc/df-core.c:1513
#4  0x00000000007b0fa0 in df_analyze ()
    at /space/rguenther/src/svn/trunk/gcc/df-core.c:1106
#5  0x0000000000efa835 in init_dce (fast=1 '\001')
    at /space/rguenther/src/svn/trunk/gcc/dce.c:187
#6  0x0000000000efbd0f in rest_of_handle_fast_dce ()
    at /space/rguenther/src/svn/trunk/gcc/dce.c:719
#7  0x0000000000efbda3 in run_fast_dce ()
    at /space/rguenther/src/svn/trunk/gcc/dce.c:767
#8  0x0000000000a3840e in rest_of_handle_see ()
    at /space/rguenther/src/svn/trunk/gcc/see.c:3823
#9  0x00000000009a4c69 in execute_one_pass (pass=0x1454340)


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
  2007-06-12 12:36 ` [Bug rtl-optimization/32300] [4.3 Regression] " rguenth at gcc dot gnu dot org
  2007-06-12 12:40 ` rguenth at gcc dot gnu dot org
@ 2007-06-12 12:46 ` zadeck at naturalbridge dot com
  2007-06-12 13:37 ` rguenth at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zadeck at naturalbridge dot com @ 2007-06-12 12:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from zadeck at naturalbridge dot com  2007-06-12 12:46 -------
I am not surprised at this at all.  Given that there are no regression tests
that use -fsee and this pass is never on by default.

I will look into this.  

However, the big picture is that we need to make a decision about optimizations
like this.  They should either be enabled either at some -O level or in
regression tests or they should be removed from the compiler.   They serve no
purpose the way that they are now.


-- 

zadeck at naturalbridge dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |zadeck at naturalbridge dot
                   |dot org                     |com
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-06-12 12:36:27         |2007-06-12 12:46:14
               date|                            |


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (2 preceding siblings ...)
  2007-06-12 12:46 ` zadeck at naturalbridge dot com
@ 2007-06-12 13:37 ` rguenth at gcc dot gnu dot org
  2007-06-12 18:13 ` zadeck at naturalbridge dot com
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-12 13:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2007-06-12 13:37 -------
Yes, those should be at least excercised by the tortures.  So, if enabling at
-O3
regtests ok I'd vote for enabling it there.


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (3 preceding siblings ...)
  2007-06-12 13:37 ` rguenth at gcc dot gnu dot org
@ 2007-06-12 18:13 ` zadeck at naturalbridge dot com
  2007-06-13 20:01 ` dje at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zadeck at naturalbridge dot com @ 2007-06-12 18:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from zadeck at naturalbridge dot com  2007-06-12 18:13 -------
This bug should be assigned to Mircea Namolaru <namolaru@il.ibm.com>.  I have
sent him mail asking that he get a proper bugzilla id.

==================================
The underlying problem is that see.c:2732 uses copy_rtx to make a copy
of an insn and then hacks on it with validate_change (and it's close
relatives).  This is not the approved way to copy an insn.  

The copy_rtx function has two problems with df:

1) The copy has a basic_block, even though it is not
in the insn stream, 

2) The copy has the same insn_uid as the old insn.  This is not legal
and confuses df which keeps side info indexed by the insn_uid.

There are several proper ways to make a copy of an insn:

1) call make_insn_raw (copy_rtx (PATTERN (ref))).

2) However, according to Ian Taylor, a middle end maintainer, the
better thing to do would be to copy the pattern of the insn, not the
insn itself and then hack on that.

However, you then make a move insn and hack the modified copy so that
it is right next to the move.  What you should do insert the copy
before the new move using one of the calls in emit_rtl such as
add_insn_before.  No one is supposed to hack the next and prev insn
themselves.

The rest of the pass appears to be df ready.  Of course until it is
tested it most likely does not work.  And so adding some regression
tests would be good.


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (4 preceding siblings ...)
  2007-06-12 18:13 ` zadeck at naturalbridge dot com
@ 2007-06-13 20:01 ` dje at gcc dot gnu dot org
  2007-06-25 11:17 ` namolaru at il dot ibm dot com
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dje at gcc dot gnu dot org @ 2007-06-13 20:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from dje at gcc dot gnu dot org  2007-06-13 20:00 -------
>From IRC:

see.c:2732 makes a copy of an insn and then hacks on it with validate_change
(and it's close relatives).  This copy has a basic_block, even though it is not
in the insn stream, as well as the same insn_uid as the old insn.  
zadeck This is very bad for df.  df assumes that insns have a null block until
they are inserted into the insn stream and it also uses the insn_uid as the
index into tables for the side info.  I can fix part of the problem by nulling
out the bb for the clone, but i need to give it a shiney new uid (or else use
some properly supported function to make a copy of an insn.

This is very bad for df.  df assumes that insns have a null block until they
are inserted into the insn stream and it also uses the insn_uid as the index
into tables for the side info.  I can fix part of the problem by nulling out
the bb for the clone, but i need to give it a shiney new uid (or else use some
properly supported function to make a copy of an insn.
it links the copy into the insn chain by hand

better would be to skip the make_insn_raw, and just call emit_insn_before at
the appropriate moment
that is, copy the pattern, not the whole insn
and pass the pattern to emit_insn_before

it leaves the 2 insn sequence hanging in mid air until later in the pass it may
or may not replace the old insn with the new sequence

that's why god invented start_sequence/end_sequence--so that you can build and
handle sequences of insns


-- 

dje at gcc dot gnu dot org changed:

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


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (5 preceding siblings ...)
  2007-06-13 20:01 ` dje at gcc dot gnu dot org
@ 2007-06-25 11:17 ` namolaru at il dot ibm dot com
  2007-06-29 18:44 ` mmitchel at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: namolaru at il dot ibm dot com @ 2007-06-25 11:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from namolaru at il dot ibm dot com  2007-06-25 11:17 -------
(In reply to comment #5)
> This bug should be assigned to Mircea Namolaru <namolaru@il.ibm.com>.  I have
> sent him mail asking that he get a proper bugzilla id.
> ==================================
> The underlying problem is that see.c:2732 uses copy_rtx to make a copy
> of an insn and then hacks on it with validate_change (and it's close
> relatives).  This is not the approved way to copy an insn.  
> The copy_rtx function has two problems with df:
> 1) The copy has a basic_block, even though it is not
> in the insn stream, 
> 2) The copy has the same insn_uid as the old insn.  This is not legal
> and confuses df which keeps side info indexed by the insn_uid.
> There are several proper ways to make a copy of an insn:
> 1) call make_insn_raw (copy_rtx (PATTERN (ref))).
> 2) However, according to Ian Taylor, a middle end maintainer, the
> better thing to do would be to copy the pattern of the insn, not the
> insn itself and then hack on that.
> However, you then make a move insn and hack the modified copy so that
> it is right next to the move.  What you should do insert the copy
> before the new move using one of the calls in emit_rtl such as
> add_insn_before.  No one is supposed to hack the next and prev insn
> themselves.
> The rest of the pass appears to be df ready.  Of course until it is
> tested it most likely does not work.  And so adding some regression
> tests would be good.

Working on this bug. 


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (6 preceding siblings ...)
  2007-06-25 11:17 ` namolaru at il dot ibm dot com
@ 2007-06-29 18:44 ` mmitchel at gcc dot gnu dot org
  2007-07-13 15:54 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-06-29 18:44 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (7 preceding siblings ...)
  2007-06-29 18:44 ` mmitchel at gcc dot gnu dot org
@ 2007-07-13 15:54 ` pinskia at gcc dot gnu dot org
  2007-08-17 12:44 ` wouter dot vermaelen at scarlet dot be
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-07-13 15:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2007-07-13 15:53 -------
*** Bug 32755 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Joey dot ye at intel dot com


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (8 preceding siblings ...)
  2007-07-13 15:54 ` pinskia at gcc dot gnu dot org
@ 2007-08-17 12:44 ` wouter dot vermaelen at scarlet dot be
  2007-08-17 12:49 ` zadeck at naturalbridge dot com
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: wouter dot vermaelen at scarlet dot be @ 2007-08-17 12:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from wouter dot vermaelen at scarlet dot be  2007-08-17 12:44 -------
Here is a simpler testcase:

int f(int i) { return 100LL / (1 + i); }


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (9 preceding siblings ...)
  2007-08-17 12:44 ` wouter dot vermaelen at scarlet dot be
@ 2007-08-17 12:49 ` zadeck at naturalbridge dot com
  2007-09-04 23:31 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: zadeck at naturalbridge dot com @ 2007-08-17 12:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from zadeck at naturalbridge dot com  2007-08-17 12:48 -------
Subject: Re:  [4.3 Regression] ICE with -O2 -fsee

wouter dot vermaelen at scarlet dot be wrote:
> ------- Comment #9 from wouter dot vermaelen at scarlet dot be  2007-08-17 12:44 -------
> Here is a simpler testcase:
>
> int f(int i) { return 100LL / (1 + i); }
>
>
>   
thanks,

everyone knows what the problems with see.c are, it is simply a matter
of having the authors fix their code.  Virtually anything that invokes
this pass will cause it to fail.

kenny


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (10 preceding siblings ...)
  2007-08-17 12:49 ` zadeck at naturalbridge dot com
@ 2007-09-04 23:31 ` jakub at gcc dot gnu dot org
  2007-09-04 23:37 ` jakub at gcc dot gnu dot org
  2007-09-05  1:24 ` zadeck at naturalbridge dot com
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-04 23:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jakub at gcc dot gnu dot org  2007-09-04 23:31 -------
Subject: Bug 32300

Author: jakub
Date: Tue Sep  4 23:31:11 2007
New Revision: 128108

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=128108
Log:
        PR rtl-optimization/32300
        * see.c (see_copy_insn): New function.
        (see_def_extension_not_merged, see_merge_one_use_extension,
        see_merge_one_def_extension): Use it.  Avoid changing
        PREV_INSN/NEXT_INSN chains directly, insted emit insns
        into sequences.  Call df_insn_delete on temporary insns
        that won't be emitted into the insn stream.
        (rest_of_handle_see): Turn off DF_DEFER_INSN_RESCAN
        and run df_process_deferred_rescans () before run_fast_dce.

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


-- 


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (11 preceding siblings ...)
  2007-09-04 23:31 ` jakub at gcc dot gnu dot org
@ 2007-09-04 23:37 ` jakub at gcc dot gnu dot org
  2007-09-05  1:24 ` zadeck at naturalbridge dot com
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-04 23:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jakub at gcc dot gnu dot org  2007-09-04 23:37 -------
Fixed.


-- 

jakub at gcc dot gnu dot org changed:

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


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


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

* [Bug rtl-optimization/32300] [4.3 Regression] ICE with -O2 -fsee
  2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
                   ` (12 preceding siblings ...)
  2007-09-04 23:37 ` jakub at gcc dot gnu dot org
@ 2007-09-05  1:24 ` zadeck at naturalbridge dot com
  13 siblings, 0 replies; 15+ messages in thread
From: zadeck at naturalbridge dot com @ 2007-09-05  1:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from zadeck at naturalbridge dot com  2007-09-05 01:24 -------
Subject: Re:  [4.3 Regression] ICE with -O2 -fsee

jakub at gcc dot gnu dot org wrote:
> ------- Comment #12 from jakub at gcc dot gnu dot org  2007-09-04 23:37 -------
> Fixed.
>
>
>   
jakub

thanks for doing this.  The changes to df are fine, but i think that it
exceeds my authority to approve more than that.

kenny


-- 


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


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

end of thread, other threads:[~2007-09-05  1:24 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-12 11:35 [Bug c++/32300] New: ICE with -O2 -fsee wouter dot vermaelen at scarlet dot be
2007-06-12 12:36 ` [Bug rtl-optimization/32300] [4.3 Regression] " rguenth at gcc dot gnu dot org
2007-06-12 12:40 ` rguenth at gcc dot gnu dot org
2007-06-12 12:46 ` zadeck at naturalbridge dot com
2007-06-12 13:37 ` rguenth at gcc dot gnu dot org
2007-06-12 18:13 ` zadeck at naturalbridge dot com
2007-06-13 20:01 ` dje at gcc dot gnu dot org
2007-06-25 11:17 ` namolaru at il dot ibm dot com
2007-06-29 18:44 ` mmitchel at gcc dot gnu dot org
2007-07-13 15:54 ` pinskia at gcc dot gnu dot org
2007-08-17 12:44 ` wouter dot vermaelen at scarlet dot be
2007-08-17 12:49 ` zadeck at naturalbridge dot com
2007-09-04 23:31 ` jakub at gcc dot gnu dot org
2007-09-04 23:37 ` jakub at gcc dot gnu dot org
2007-09-05  1:24 ` zadeck at naturalbridge dot com

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).