public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/14498] New: ICE on legal (varargs)
@ 2004-03-09  1:52 dalej at gcc dot gnu dot org
  2004-03-09  1:55 ` [Bug optimization/14498] [tree-ssa] " pinskia at gcc dot gnu dot org
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: dalej at gcc dot gnu dot org @ 2004-03-09  1:52 UTC (permalink / raw)
  To: gcc-bugs

Compile with -O2 and watch the ICE:

#include <stdarg.h>
extern void baz(char *);
void bar (va_list *args)
{
  if (args)
    {
      char *s = va_arg(*args, char *);
      baz(s);
    }
}

Gimplifier marks args as volatile when it sees the va_arg but does not propagate this backwards to 
regenerate gimpl for the test of args.

-- 
           Summary: ICE on legal (varargs)
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P2
         Component: optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dalej at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: powerpc-apple-darwin7.2.0
  GCC host triplet: powerpc-apple-darwin7.2.0
GCC target triplet: powerpc-apple-darwin7.2.0


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
@ 2004-03-09  1:55 ` pinskia at gcc dot gnu dot org
  2004-03-09  2:15 ` dalej at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-09  1:55 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-09 01:55 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-03-09 01:55:42
               date|                            |
            Summary|ICE on legal (varargs)      |[tree-ssa] ICE on legal
                   |                            |(varargs)
   Target Milestone|---                         |tree-ssa


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
  2004-03-09  1:55 ` [Bug optimization/14498] [tree-ssa] " pinskia at gcc dot gnu dot org
@ 2004-03-09  2:15 ` dalej at gcc dot gnu dot org
  2004-03-09  3:10 ` pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dalej at gcc dot gnu dot org @ 2004-03-09  2:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at gcc dot gnu dot org  2004-03-09 02:15 -------
It seems to work to move VA_ARG handling back into the unsharing pass, but that's ugly.



-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
  2004-03-09  1:55 ` [Bug optimization/14498] [tree-ssa] " pinskia at gcc dot gnu dot org
  2004-03-09  2:15 ` dalej at gcc dot gnu dot org
@ 2004-03-09  3:10 ` pinskia at gcc dot gnu dot org
  2004-03-10 18:57 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-09  3:10 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-09 03:10 -------
The right fix is really to lower varargs like the FIXME's say to do.

-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-03-09  3:10 ` pinskia at gcc dot gnu dot org
@ 2004-03-10 18:57 ` pinskia at gcc dot gnu dot org
  2004-03-10 23:13 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-10 18:57 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-10 18:57 -------
This effects perl in SPEC 2000.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
           Severity|normal                      |critical
      Known to fail|                            |tree-ssa
      Known to work|                            |3.4.0
   Last reconfirmed|2004-03-09 01:55:42         |2004-03-10 18:57:52
               date|                            |


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-03-10 18:57 ` pinskia at gcc dot gnu dot org
@ 2004-03-10 23:13 ` pinskia at gcc dot gnu dot org
  2004-03-13  6:31 ` pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-10 23:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-10 23:13 -------
It also effects perl in SPEC 2004 and most likely perl every where.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2004-03-10 18:57:52         |2004-03-10 23:13:57
               date|                            |


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-03-10 23:13 ` pinskia at gcc dot gnu dot org
@ 2004-03-13  6:31 ` pinskia at gcc dot gnu dot org
  2004-03-13 12:19 ` falk dot hueffner at student dot uni-tuebingen dot de
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-03-13  6:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-13 06:31 -------
>From bug 13737:
AFAIK it is incorrect to use "va_list *" so the code is wrong.
va_list is allowed to be something different that a pointer, for example
on ppc64 and x86-64 it is an one element array (builtin type).
Arrays are always passed as a pointer to the first element so there is no
performance penalty.

>From this other bug I do not know if this is valid code (even though it is used in SPEC 
2000 or 2004) so maybe this should rejected.

-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-03-13  6:31 ` pinskia at gcc dot gnu dot org
@ 2004-03-13 12:19 ` falk dot hueffner at student dot uni-tuebingen dot de
  2004-03-14 18:53 ` dalej at apple dot com
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: falk dot hueffner at student dot uni-tuebingen dot de @ 2004-03-13 12:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From falk dot hueffner at student dot uni-tuebingen dot de  2004-03-13 12:19 -------
Subject: Re:  [tree-ssa] ICE on legal (varargs)

"pinskia at gcc dot gnu dot org" <gcc-bugzilla@gcc.gnu.org> writes:

> ------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-13 06:31 -------
> From this other bug I do not know if this is valid code (even though
> it is used in SPEC 2000 or 2004) so maybe this should rejected.

I'm pretty sure it's valid. At least I don't see anything specific in
the standard which it might violate.



-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2004-03-13 12:19 ` falk dot hueffner at student dot uni-tuebingen dot de
@ 2004-03-14 18:53 ` dalej at apple dot com
  2004-03-15 19:58 ` dalej at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dalej at apple dot com @ 2004-03-14 18:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at apple dot com  2004-03-14 18:53 -------
C99 has a footnote 212 which says explicitly that pointers to va_list are allowed.

-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2004-03-14 18:53 ` dalej at apple dot com
@ 2004-03-15 19:58 ` dalej at gcc dot gnu dot org
  2004-03-15 21:34 ` dnovillo at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dalej at gcc dot gnu dot org @ 2004-03-15 19:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at gcc dot gnu dot org  2004-03-15 19:58 -------
I've attached a patch on the lines in comment #2.  I don't claim this is the best way to fix it,
but this seems to work.


-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2004-03-15 19:58 ` dalej at gcc dot gnu dot org
@ 2004-03-15 21:34 ` dnovillo at gcc dot gnu dot org
  2004-03-15 22:26 ` dnovillo at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-03-15 21:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-03-15 21:34 -------

The patch will extend the hack to cover more cases, but it's not clear that it 
will be enough to cover all cases.

If we are going to keep ducking the issue, we might as well hack VA_ARG_EXPRs 
early enough to avoid gimplification problems.  The attached patch marks 
volatile the operand of a VA_ARG_EXPR right after we build it.

Richard, I've assigned the PR to you.  If the real fix is too intrusive to be 
done before the merge, then I'd suggest we use this hack until a real fix is 
done post merge.  The hack fixes the PR but it still needs testing.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rth at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2004-03-15 21:34 ` dnovillo at gcc dot gnu dot org
@ 2004-03-15 22:26 ` dnovillo at gcc dot gnu dot org
  2004-03-15 22:43 ` dalej at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-03-15 22:26 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-03-15 22:25 -------

I was wrong, Dale's patch from comment #9 should be enough.  I forgot that by
marking the operands volatile too early we cause spurious FE warnings.

Dale, if your patch survives bootstrap and testing it's OK to go in.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dalej at apple dot com


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2004-03-15 22:26 ` dnovillo at gcc dot gnu dot org
@ 2004-03-15 22:43 ` dalej at gcc dot gnu dot org
  2004-03-15 22:49 ` dnovillo at redhat dot com
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dalej at gcc dot gnu dot org @ 2004-03-15 22:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at gcc dot gnu dot org  2004-03-15 22:43 -------
OK, I'll run a test cycle.  Leaving assigned to rth in the meantime since he hasn't commented yet;
if satisfied with this solution, he can assign it to me.
 

-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2004-03-15 22:43 ` dalej at gcc dot gnu dot org
@ 2004-03-15 22:49 ` dnovillo at redhat dot com
  2004-03-16 16:04 ` dnovillo at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dnovillo at redhat dot com @ 2004-03-15 22:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at redhat dot com  2004-03-15 22:49 -------
Subject: Re:  [tree-ssa] ICE on legal (varargs)

On Mon, 2004-03-15 at 17:43, dalej at gcc dot gnu dot org wrote:
> ------- Additional Comments From dalej at gcc dot gnu dot org  2004-03-15 22:43 -------
> OK, I'll run a test cycle.  Leaving assigned to rth in the meantime since he hasn't commented yet;
> if satisfied with this solution, he can assign it to me.
>  
He has, on IRC:

<dnovillo> rth: re VA_ARG_EXPR.  we might as well hack it good, then.  eventually fix it after the merge.
<rth> dnovillo: yeah.
<rth> dnovillo: when i was looking at this last time, i stalled on amd64.
<rth> dnovillo: it's really really ugly.


Diego.



-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2004-03-15 22:49 ` dnovillo at redhat dot com
@ 2004-03-16 16:04 ` dnovillo at gcc dot gnu dot org
  2004-03-16 19:06 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-03-16 16:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-03-16 16:04 -------
Dale,

FYI.  Your patch survived bootstrap and regtesting on x86 and x86-64.

-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2004-03-16 16:04 ` dnovillo at gcc dot gnu dot org
@ 2004-03-16 19:06 ` cvs-commit at gcc dot gnu dot org
  2004-03-16 19:08 ` dalej at gcc dot gnu dot org
  2004-05-29  1:18 ` [Bug rtl-optimization/14498] " cvs-commit at gcc dot gnu dot org
  16 siblings, 0 replies; 18+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-03-16 19:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-03-16 19:06 -------
Subject: Bug 14498

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	tree-ssa-20020619-branch
Changes by:	dalej@gcc.gnu.org	2004-03-16 19:05:57

Modified files:
	gcc            : gimplify.c ChangeLog.tree-ssa 

Log message:
	2004-03-16  Dale Johannesen  <dale@apple.com>
	
	PR optimization/14498
	* gimplify.c (copy_if_shared_r): Mark VA_ARGS_EXPRs as volatile.
	(mark_decls_volatile_r): Moved higher in file (unchanged).

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/gimplify.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.2.144&r2=1.1.2.145
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.tree-ssa.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.2.1273&r2=1.1.2.1274



-- 


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


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

* [Bug optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2004-03-16 19:06 ` cvs-commit at gcc dot gnu dot org
@ 2004-03-16 19:08 ` dalej at gcc dot gnu dot org
  2004-05-29  1:18 ` [Bug rtl-optimization/14498] " cvs-commit at gcc dot gnu dot org
  16 siblings, 0 replies; 18+ messages in thread
From: dalej at gcc dot gnu dot org @ 2004-03-16 19:08 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at gcc dot gnu dot org  2004-03-16 19:08 -------
Passed on darwin also, checked in.


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


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


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

* [Bug rtl-optimization/14498] [tree-ssa] ICE on legal (varargs)
  2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2004-03-16 19:08 ` dalej at gcc dot gnu dot org
@ 2004-05-29  1:18 ` cvs-commit at gcc dot gnu dot org
  16 siblings, 0 replies; 18+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-05-29  1:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-05-28 17:09 -------
Subject: Bug 14498

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	dalej@gcc.gnu.org	2004-05-28 17:09:22

Added files:
	gcc/testsuite/gcc.dg: va-arg-3.c 

Log message:
	New, from PR 14498.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/va-arg-3.c.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

end of thread, other threads:[~2004-05-28 17:09 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-09  1:52 [Bug optimization/14498] New: ICE on legal (varargs) dalej at gcc dot gnu dot org
2004-03-09  1:55 ` [Bug optimization/14498] [tree-ssa] " pinskia at gcc dot gnu dot org
2004-03-09  2:15 ` dalej at gcc dot gnu dot org
2004-03-09  3:10 ` pinskia at gcc dot gnu dot org
2004-03-10 18:57 ` pinskia at gcc dot gnu dot org
2004-03-10 23:13 ` pinskia at gcc dot gnu dot org
2004-03-13  6:31 ` pinskia at gcc dot gnu dot org
2004-03-13 12:19 ` falk dot hueffner at student dot uni-tuebingen dot de
2004-03-14 18:53 ` dalej at apple dot com
2004-03-15 19:58 ` dalej at gcc dot gnu dot org
2004-03-15 21:34 ` dnovillo at gcc dot gnu dot org
2004-03-15 22:26 ` dnovillo at gcc dot gnu dot org
2004-03-15 22:43 ` dalej at gcc dot gnu dot org
2004-03-15 22:49 ` dnovillo at redhat dot com
2004-03-16 16:04 ` dnovillo at gcc dot gnu dot org
2004-03-16 19:06 ` cvs-commit at gcc dot gnu dot org
2004-03-16 19:08 ` dalej at gcc dot gnu dot org
2004-05-29  1:18 ` [Bug rtl-optimization/14498] " cvs-commit 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).