public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/36344]  New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
@ 2008-05-27 13:13 rguenth at gcc dot gnu dot org
  2008-05-28  8:08 ` [Bug testsuite/36344] " pinskia at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-05-27 13:13 UTC (permalink / raw)
  To: gcc-bugs

$Summary.  Caused by the fix for PR36339.


-- 
           Summary: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
           Product: gcc
           Version: 4.3.1
            Status: UNCONFIRMED
          Keywords: missed-optimization, xfail
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: rguenth at gcc dot gnu dot org
OtherBugsDependingO 36339
             nThis:


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
@ 2008-05-28  8:08 ` pinskia at gcc dot gnu dot org
  2008-05-28 11:30 ` rguenth at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-05-28  8:08 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
   Target Milestone|---                         |4.3.1


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
  2008-05-28  8:08 ` [Bug testsuite/36344] " pinskia at gcc dot gnu dot org
@ 2008-05-28 11:30 ` rguenth at gcc dot gnu dot org
  2008-05-28 22:12 ` rguenth at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-05-28 11:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from rguenth at gcc dot gnu dot org  2008-05-28 11:29 -------
The reason that the PRE no longer works is that the edge iterator ei is now
call clobbered.  It escapes to a pure/const function (which wouldn't make it
call clobbered alone) and it has its address taken which is why it is in
the list of addressable vars.  Now through the other calls there escape
pointers
that point to anything, so all addressable vars get clobbered.

A few things would help here:

 - properly track what can point to local variables

 - track addresses that are stored somewhere separately (in this case &ei is
   only passed to a pure/const call)

 - do type-based pruning of the call clobber variables.  This works only
   if an escaped pointer is _always_ dereferenced (thus the dereference
   site post-dominates the entry BB) - in contrast to pruning the points-to
   sets for dereference sites where we can prune in flow-insensitive way.


-- 


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
  2008-05-28  8:08 ` [Bug testsuite/36344] " pinskia at gcc dot gnu dot org
  2008-05-28 11:30 ` rguenth at gcc dot gnu dot org
@ 2008-05-28 22:12 ` rguenth at gcc dot gnu dot org
  2008-06-06 15:04 ` rguenth at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-05-28 22:12 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth 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-05-28 22:12:08
               date|                            |


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-05-28 22:12 ` rguenth at gcc dot gnu dot org
@ 2008-06-06 15:04 ` rguenth at gcc dot gnu dot org
  2008-06-13 21:42 ` mmitchel at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-06-06 15:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2008-06-06 14:59 -------
4.3.1 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-06-06 15:04 ` rguenth at gcc dot gnu dot org
@ 2008-06-13 21:42 ` mmitchel at gcc dot gnu dot org
  2008-06-27 18:55 ` rguenth at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2008-06-13 21:42 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-06-13 21:42 ` mmitchel at gcc dot gnu dot org
@ 2008-06-27 18:55 ` rguenth at gcc dot gnu dot org
  2008-06-27 21:56 ` rguenth at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-06-27 18:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from rguenth at gcc dot gnu dot org  2008-06-27 18:54 -------
Subject: Bug 36344

Author: rguenth
Date: Fri Jun 27 18:53:43 2008
New Revision: 137197

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=137197
Log:
2008-06-27  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/36400
        PR tree-optimization/36373
        PR tree-optimization/36344
        * tree-ssa-structalias.c (var_escaped, escaped_tree, escaped_id,
        var_nonlocal, nonlocal_tree, nonlocal_id): New globals
        (update_alias_info): Remove call clobbering code.
        (make_constraint_to): New helper function.
        (make_escape_constraint): Likewise.
        (handle_rhs_call): Use it on all pointer containing arguments.
        Also mark the static chain escaped.
        (handle_lhs_call): Make constraints from NONLOCAL and ESCAPED
        instead of ANYTHING.
        (make_constraint_from): New helper split out from ...
        (make_constraint_from_anything): ... here.
        (find_func_aliases): Add constraints for escape sites.
        (intra_create_variable_infos): Make constraints from NONLOCAL
        for parameters.
        (find_what_p_points_to): Interpret NONLOCAL and ESCAPED the same
        as ANYTHING.
        (clobber_what_p_points_to): Remove.
        (clobber_what_escaped): New function.
        (init_base_vars): Init NONLOCAL and ESCAPED.
        (do_sd_constraint): Do not propagate the solution from ESCAPED
        but use ESCAPED as a placeholder.
        (solve_graph): Likewise.
        * tree-flow.h (clobber_what_p_points_to): Remove.
        (clobber_what_escaped): Declare.
        * tree-ssa-alias.c (set_initial_properties): Call it.
        Remove code clobbering escaped pointers.

        * gcc.dg/torture/pr36373-1.c: New testcase.
        * gcc.dg/torture/pr36373-2.c: Likewise.
        * gcc.dg/torture/pr36373-3.c: Likewise.
        * gcc.dg/torture/pr36373-4.c: Likewise.
        * gcc.dg/torture/pr36373-5.c: Likewise.
        * gcc.dg/torture/pr36373-6.c: Likewise.
        * gcc.dg/torture/pr36373-7.c: Likewise.
        * gcc.dg/torture/pr36373-8.c: Likewise.
        * gcc.dg/torture/pr36373-9.c: Likewise.
        * gcc.dg/torture/pr36373-10.c: Likewise.
        * gcc.dg/torture/pr36400.c: Likewise.
        * gcc.c-torture/execute/pta-field-1.c: Likewise.
        * gcc.c-torture/execute/pta-field-2.c: Likewise.
        * gcc.dg/tree-ssa/loadpre8.c: Remove XFAIL.
        * gcc.dg/tree-ssa/pr24287.c: XFAIL.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/loadpre8.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr24287.c
    trunk/gcc/tree-flow.h
    trunk/gcc/tree-ssa-alias.c
    trunk/gcc/tree-ssa-structalias.c


-- 


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


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

* [Bug testsuite/36344] [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-06-27 18:55 ` rguenth at gcc dot gnu dot org
@ 2008-06-27 21:56 ` rguenth at gcc dot gnu dot org
  2008-06-28 11:19 ` [Bug testsuite/36344] [4.3 " rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-06-27 21:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2008-06-27 21:55 -------
Subject: Bug 36344

Author: rguenth
Date: Fri Jun 27 21:54:42 2008
New Revision: 137204

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=137204
Log:
2008-06-27  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/36400
        PR tree-optimization/36373
        PR tree-optimization/36344
        * tree-ssa-structalias.c (var_escaped, escaped_tree, escaped_id,
        var_nonlocal, nonlocal_tree, nonlocal_id): New globals
        (update_alias_info): Remove call clobbering code.
        (make_constraint_to): New helper function.
        (make_escape_constraint): Likewise.
        (handle_rhs_call): Use it on all pointer containing arguments.
        Also mark the static chain escaped.
        (handle_lhs_call): Make constraints from NONLOCAL and ESCAPED
        instead of ANYTHING.
        (make_constraint_from): New helper split out from ...
        (make_constraint_from_anything): ... here.
        (find_func_aliases): Add constraints for escape sites.
        (intra_create_variable_infos): Make constraints from NONLOCAL
        for parameters.
        (find_what_p_points_to): Interpret NONLOCAL and ESCAPED the same
        as ANYTHING.
        (clobber_what_p_points_to): Remove.
        (clobber_what_escaped): New function.
        (init_base_vars): Init NONLOCAL and ESCAPED.
        (do_sd_constraint): Do not propagate the solution from ESCAPED
        but use ESCAPED as a placeholder.
        (solve_graph): Likewise.
        * tree-flow.h (clobber_what_p_points_to): Remove.
        (clobber_what_escaped): Declare.
        * tree-ssa-alias.c (set_initial_properties): Call it.
        Remove code clobbering escaped pointers.

        * gcc.dg/torture/pr36373-1.c: New testcase.
        * gcc.dg/torture/pr36373-2.c: Likewise.
        * gcc.dg/torture/pr36373-3.c: Likewise.
        * gcc.dg/torture/pr36373-4.c: Likewise.
        * gcc.dg/torture/pr36373-5.c: Likewise.
        * gcc.dg/torture/pr36373-6.c: Likewise.
        * gcc.dg/torture/pr36373-7.c: Likewise.
        * gcc.dg/torture/pr36373-8.c: Likewise.
        * gcc.dg/torture/pr36373-9.c: Likewise.
        * gcc.dg/torture/pr36373-10.c: Likewise.
        * gcc.dg/torture/pr36400.c: Likewise.
        * gcc.c-torture/execute/pta-field-1.c: Likewise.
        * gcc.c-torture/execute/pta-field-2.c: Likewise.
        * gcc.dg/tree-ssa/loadpre8.c: Remove XFAIL.
        * gcc.dg/tree-ssa/pr24287.c: XFAIL.

Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/pta-field-1.c
    trunk/gcc/testsuite/gcc.c-torture/execute/pta-field-2.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-1.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-10.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-2.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-3.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-4.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-5.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-6.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-7.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-8.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36373-9.c
    trunk/gcc/testsuite/gcc.dg/torture/pr36400.c


-- 


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


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

* [Bug testsuite/36344] [4.3 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2008-06-27 21:56 ` rguenth at gcc dot gnu dot org
@ 2008-06-28 11:19 ` rguenth at gcc dot gnu dot org
  2008-08-27 22:09 ` jsm28 at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-06-28 11:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from rguenth at gcc dot gnu dot org  2008-06-28 11:19 -------
Fixed for 4.4.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.3/4.4 Regression]        |[4.3 Regression]
                   |gcc.dg/tree-ssa/loadpre8.c  |gcc.dg/tree-ssa/loadpre8.c
                   |XFAILed                     |XFAILed


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


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

* [Bug testsuite/36344] [4.3 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2008-06-28 11:19 ` [Bug testsuite/36344] [4.3 " rguenth at gcc dot gnu dot org
@ 2008-08-27 22:09 ` jsm28 at gcc dot gnu dot org
  2009-01-15 10:37 ` ramana at icerasemi dot com
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-08-27 22:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jsm28 at gcc dot gnu dot org  2008-08-27 22:04 -------
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=36344


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

* [Bug testsuite/36344] [4.3 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2008-08-27 22:09 ` jsm28 at gcc dot gnu dot org
@ 2009-01-15 10:37 ` ramana at icerasemi dot com
  2009-01-24 10:24 ` rguenth at gcc dot gnu dot org
  2009-04-22 15:16 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: ramana at icerasemi dot com @ 2009-01-15 10:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from ramana at icerasemi dot com  2009-01-15 10:37 -------
Change CC addresses


-- 

ramana at icerasemi dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|ramana at icerasemi dot com |ramana dot r at gmail dot
                   |                            |com


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


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

* [Bug testsuite/36344] [4.3 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2009-01-15 10:37 ` ramana at icerasemi dot com
@ 2009-01-24 10:24 ` rguenth at gcc dot gnu dot org
  2009-04-22 15:16 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 10:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 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=36344


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

* [Bug testsuite/36344] [4.3 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed
  2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2009-01-24 10:24 ` rguenth at gcc dot gnu dot org
@ 2009-04-22 15:16 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-04-22 15:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from rguenth at gcc dot gnu dot org  2009-04-22 15:16 -------
WONTFIX on the 4.3 branch.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to fail|                            |4.3.3
      Known to work|                            |4.4.0
         Resolution|                            |FIXED
   Target Milestone|4.3.4                       |4.4.0


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


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

end of thread, other threads:[~2009-04-22 15:16 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-27 13:13 [Bug testsuite/36344] New: [4.3/4.4 Regression] gcc.dg/tree-ssa/loadpre8.c XFAILed rguenth at gcc dot gnu dot org
2008-05-28  8:08 ` [Bug testsuite/36344] " pinskia at gcc dot gnu dot org
2008-05-28 11:30 ` rguenth at gcc dot gnu dot org
2008-05-28 22:12 ` rguenth at gcc dot gnu dot org
2008-06-06 15:04 ` rguenth at gcc dot gnu dot org
2008-06-13 21:42 ` mmitchel at gcc dot gnu dot org
2008-06-27 18:55 ` rguenth at gcc dot gnu dot org
2008-06-27 21:56 ` rguenth at gcc dot gnu dot org
2008-06-28 11:19 ` [Bug testsuite/36344] [4.3 " rguenth at gcc dot gnu dot org
2008-08-27 22:09 ` jsm28 at gcc dot gnu dot org
2009-01-15 10:37 ` ramana at icerasemi dot com
2009-01-24 10:24 ` rguenth at gcc dot gnu dot org
2009-04-22 15:16 ` rguenth 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).