public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/28238]  New: [4.2 regression] verify_stmts failed (invalid operand to unary operator)
@ 2006-07-03 22:17 tbm at cyrius dot com
  2006-07-03 22:18 ` [Bug tree-optimization/28238] " tbm at cyrius dot com
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: tbm at cyrius dot com @ 2006-07-03 22:17 UTC (permalink / raw)
  To: gcc-bugs

I get the following ICE with gcc 4.2.  gcc 4.0 and 4.1 work.

(sid)65:tbm@usurper: ~] /usr/lib/gcc-snapshot/bin/g++ -c -O min4.c
min4.c: In constructor 'ConfLexerCore::ConfLexerCore(ConfIO*)':
min4.c:86: error: invalid operand to unary operator
&thisD.2456_2->m_matchStartD.2447;

min4.c:86: internal compiler error: verify_stmts failed
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
zsh: exit 1     /usr/lib/gcc-snapshot/bin/g++ -c -O min4.c
(sid)66:tbm@usurper: ~] /usr/lib/gcc-snapshot/bin/g++ -c min4.c
(sid)67:tbm@usurper: ~] g++-4.1 -c -O2 min4.c
(sid)68:tbm@usurper: ~] g++-4.0 -c -O2 min4.c
(sid)69:tbm@usurper: ~] g++-3.4 -c -O2 min4.c
(sid)70:tbm@usurper: ~]


-- 
           Summary: [4.2 regression] verify_stmts failed (invalid operand to
                    unary operator)
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: tbm at cyrius dot com


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
@ 2006-07-03 22:18 ` tbm at cyrius dot com
  2006-07-03 22:28 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: tbm at cyrius dot com @ 2006-07-03 22:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from tbm at cyrius dot com  2006-07-03 22:18 -------
Created an attachment (id=11809)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11809&action=view)
test case


-- 


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
  2006-07-03 22:18 ` [Bug tree-optimization/28238] " tbm at cyrius dot com
@ 2006-07-03 22:28 ` pinskia at gcc dot gnu dot org
  2006-07-03 23:16 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-03 22:28 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.2.0


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
  2006-07-03 22:18 ` [Bug tree-optimization/28238] " tbm at cyrius dot com
  2006-07-03 22:28 ` pinskia at gcc dot gnu dot org
@ 2006-07-03 23:16 ` pinskia at gcc dot gnu dot org
  2006-07-04 13:56 ` rguenth at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-03 23:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-07-03 23:16 -------
Confirmed.  Reduced testcase:
struct iterator{};
struct ByteIterator : iterator
{
        ByteIterator (){}
        int a[1024];
};
inline ByteIterator f ()
{
        return  ByteIterator ();
}
class ConfLexerCore
{
        ConfLexerCore ();
        ByteIterator m_matchStart;
};
ConfLexerCore::ConfLexerCore ()
: m_matchStart (f ())
{ }


-- 

pinskia 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         |2006-07-03 23:16:00
               date|                            |


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (2 preceding siblings ...)
  2006-07-03 23:16 ` pinskia at gcc dot gnu dot org
@ 2006-07-04 13:56 ` rguenth at gcc dot gnu dot org
  2006-07-04 13:58 ` rguenth at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-04 13:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from rguenth at gcc dot gnu dot org  2006-07-04 13:56 -------
It rejects the valid code and ices during error-recovery.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |error-recovery, rejects-
                   |                            |valid


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (3 preceding siblings ...)
  2006-07-04 13:56 ` rguenth at gcc dot gnu dot org
@ 2006-07-04 13:58 ` rguenth at gcc dot gnu dot org
  2006-07-04 14:14 ` rguenth at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-04 13:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2006-07-04 13:58 -------
Ah no, verify_stmts uses error ().


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|error-recovery, rejects-    |
                   |valid                       |


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


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

* [Bug tree-optimization/28238] [4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (4 preceding siblings ...)
  2006-07-04 13:58 ` rguenth at gcc dot gnu dot org
@ 2006-07-04 14:14 ` rguenth at gcc dot gnu dot org
  2006-07-06 10:55 ` [Bug tree-optimization/28238] [4.1/4.2 " rguenth at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-04 14:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from rguenth at gcc dot gnu dot org  2006-07-04 14:14 -------
We have

(struct iteratorD.1984 *) &thisD.2040_1->m_matchStartD.2038

after inlining, which is non-gimple.

(gdb) call debug_tree (*tp)
 <nop_expr 0xb7e512e0
    type <pointer_type 0xb7e498fc
        type <record_type 0xb7e49450 iterator type_1 type_5 QI
            size <integer_cst 0xb7d911e0 constant invariant 8>
            unit size <integer_cst 0xb7d911f8 constant invariant 1>
            align 8 symtab 0 alias set -1 fields <type_decl 0xb7e199c0
iterator>
            X() X(constX&) this=(X&) n_parents=0 use_template=0
interface-unknown
            pointer_to_this <pointer_type 0xb7e498fc> chain <type_decl
0xb7e19958 iterator>>
        unsigned SI
        size <integer_cst 0xb7d913d8 constant invariant 32>
        unit size <integer_cst 0xb7d91168 constant invariant 4>
        align 32 symtab 0 alias set -1>
    readonly
    arg 0 <addr_expr 0xb7e51300
        type <pointer_type 0xb7e49678 type <record_type 0xb7e49564
ByteIterator>
            public unsigned SI size <integer_cst 0xb7d913d8 32> unit size
<integer_cst 0xb7d91168 4>
            align 32 symtab 0 alias set -1>
        arg 0 <component_ref 0xb7e1c7f8 type <record_type 0xb7e49564
ByteIterator>

            arg 0 <indirect_ref 0xb7e51320 type <record_type 0xb7e49ebc
ConfLexerCore>

                arg 0 <ssa_name 0xb7da0540 type <pointer_type 0xb7e4e05c>
                    var <parm_decl 0xb7d9fd70 this> def_stmt <nop_expr
0xb7e51340>
                    version 1>> arg 1 <field_decl 0xb7e4e0b8 m_matchStart>>>>


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (5 preceding siblings ...)
  2006-07-04 14:14 ` rguenth at gcc dot gnu dot org
@ 2006-07-06 10:55 ` rguenth at gcc dot gnu dot org
  2006-07-06 12:39 ` rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-06 10:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2006-07-06 10:55 -------
4.1.2 also fails.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|4.2.0                       |4.2.0 4.1.2
            Summary|[4.2 regression]            |[4.1/4.2 regression]
                   |verify_stmts failed (invalid|verify_stmts failed (invalid
                   |operand to unary operator)  |operand to unary operator)


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


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (6 preceding siblings ...)
  2006-07-06 10:55 ` [Bug tree-optimization/28238] [4.1/4.2 " rguenth at gcc dot gnu dot org
@ 2006-07-06 12:39 ` rguenth at gcc dot gnu dot org
  2006-07-06 14:55 ` patchapp at dberlin dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-06 12:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2006-07-06 12:38 -------
I have a fix.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rguenth at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-07-03 23:16:00         |2006-07-06 12:38:32
               date|                            |


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


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (8 preceding siblings ...)
  2006-07-06 14:55 ` patchapp at dberlin dot org
@ 2006-07-06 14:55 ` pinskia at gcc dot gnu dot org
  2006-07-17  3:03 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-06 14:55 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |blocker
   Target Milestone|4.2.0                       |4.1.2


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


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (7 preceding siblings ...)
  2006-07-06 12:39 ` rguenth at gcc dot gnu dot org
@ 2006-07-06 14:55 ` patchapp at dberlin dot org
  2006-07-06 14:55 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: patchapp at dberlin dot org @ 2006-07-06 14:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from patchapp at dberlin dot org  2006-07-06 14:55 -------
Subject: Bug number PR28238

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2006-07/msg00226.html


-- 


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


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (9 preceding siblings ...)
  2006-07-06 14:55 ` pinskia at gcc dot gnu dot org
@ 2006-07-17  3:03 ` mmitchel at gcc dot gnu dot org
  2006-07-17  8:04 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-07-17  3:03 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=28238


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

* [Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (10 preceding siblings ...)
  2006-07-17  3:03 ` mmitchel at gcc dot gnu dot org
@ 2006-07-17  8:04 ` rguenth at gcc dot gnu dot org
  2006-07-17  8:05 ` [Bug tree-optimization/28238] [4.1 " rguenth at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-17  8:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from rguenth at gcc dot gnu dot org  2006-07-17 08:04 -------
Subject: Bug 28238

Author: rguenth
Date: Mon Jul 17 08:04:25 2006
New Revision: 115517

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115517
Log:
2006-07-17  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/28238
        * tree-inline.c (copy_bb): Check if we produced valid
        gimple copying and substituting a stmt.  If not, gimplify
        it.

        * g++.dg/tree-ssa/pr28238.C: New testcase.

Added:
    trunk/gcc/testsuite/g++.dg/tree-ssa/pr28238.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-inline.c


-- 


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


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

* [Bug tree-optimization/28238] [4.1 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (11 preceding siblings ...)
  2006-07-17  8:04 ` rguenth at gcc dot gnu dot org
@ 2006-07-17  8:05 ` rguenth at gcc dot gnu dot org
  2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
  2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-17  8:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from rguenth at gcc dot gnu dot org  2006-07-17 08:05 -------
Fixed on the mainline.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|4.2.0 4.1.2                 |4.1.2
      Known to work|3.4.6 4.0.4 4.1.1           |3.4.6 4.0.4 4.1.1 4.2.0
            Summary|[4.1/4.2 regression]        |[4.1 regression]
                   |verify_stmts failed (invalid|verify_stmts failed (invalid
                   |operand to unary operator)  |operand to unary operator)


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


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

* [Bug tree-optimization/28238] [4.1 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (12 preceding siblings ...)
  2006-07-17  8:05 ` [Bug tree-optimization/28238] [4.1 " rguenth at gcc dot gnu dot org
@ 2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
  2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-24 10:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from rguenth at gcc dot gnu dot org  2006-07-24 10:28 -------
Fixed.


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/28238] [4.1 regression] verify_stmts failed (invalid operand to unary operator)
  2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
                   ` (13 preceding siblings ...)
  2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
@ 2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-07-24 10:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from rguenth at gcc dot gnu dot org  2006-07-24 10:28 -------
Subject: Bug 28238

Author: rguenth
Date: Mon Jul 24 10:27:53 2006
New Revision: 115711

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115711
Log:
2006-07-24  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/28238
        * tree-inline.c (copy_bb): Check if we produced valid
        gimple copying and substituting a stmt.  If not, gimplify
        it.

        * g++.dg/tree-ssa/pr28238.C: New testcase.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/tree-ssa/pr28238.C
Modified:
    branches/gcc-4_1-branch/gcc/ChangeLog
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_1-branch/gcc/tree-inline.c


-- 


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


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

end of thread, other threads:[~2006-07-24 10:28 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-03 22:17 [Bug tree-optimization/28238] New: [4.2 regression] verify_stmts failed (invalid operand to unary operator) tbm at cyrius dot com
2006-07-03 22:18 ` [Bug tree-optimization/28238] " tbm at cyrius dot com
2006-07-03 22:28 ` pinskia at gcc dot gnu dot org
2006-07-03 23:16 ` pinskia at gcc dot gnu dot org
2006-07-04 13:56 ` rguenth at gcc dot gnu dot org
2006-07-04 13:58 ` rguenth at gcc dot gnu dot org
2006-07-04 14:14 ` rguenth at gcc dot gnu dot org
2006-07-06 10:55 ` [Bug tree-optimization/28238] [4.1/4.2 " rguenth at gcc dot gnu dot org
2006-07-06 12:39 ` rguenth at gcc dot gnu dot org
2006-07-06 14:55 ` patchapp at dberlin dot org
2006-07-06 14:55 ` pinskia at gcc dot gnu dot org
2006-07-17  3:03 ` mmitchel at gcc dot gnu dot org
2006-07-17  8:04 ` rguenth at gcc dot gnu dot org
2006-07-17  8:05 ` [Bug tree-optimization/28238] [4.1 " rguenth at gcc dot gnu dot org
2006-07-24 10:28 ` rguenth at gcc dot gnu dot org
2006-07-24 10:28 ` 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).