public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias
@ 2004-01-20  7:03 dann at godzilla dot ics dot uci dot edu
  2004-01-20 15:13 ` [Bug optimization/13761] " pinskia at gcc dot gnu dot org
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: dann at godzilla dot ics dot uci dot edu @ 2004-01-20  7:03 UTC (permalink / raw)
  To: gcc-bugs

struct s {   int s;  int s2;  char p;  int arr[10];};

int foo0 (struct s * f)
{
  f->s = 1;
  f->s2 = 2;
  if (f->s != 1)
    link_error ();
}

The "if" is not optimized because, presumably, the 2 stores are not considered
not to alias.

The .optimized dump:

foo0 (f)
{
<bb 0>:
  f->s = 1;
  f->s2 = 2;
  if (f->s != 1) goto <L0>; else goto <L1>;

<L0>:;
  link_error ();

<L1>:;
  return;

}

-- 
           Summary: [tree-ssa] component refs to the same struct should not
                    alias
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dann at godzilla dot ics dot uci dot edu
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
@ 2004-01-20 15:13 ` pinskia at gcc dot gnu dot org
  2004-01-21 20:17 ` pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-20 15:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-20 15:13 -------
Confirmed, even pta does not help.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |pessimizes-code
   Last reconfirmed|0000-00-00 00:00:00         |2004-01-20 15:13:06
               date|                            |
   Target Milestone|---                         |tree-ssa


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


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

* [Bug optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
  2004-01-20 15:13 ` [Bug optimization/13761] " pinskia at gcc dot gnu dot org
@ 2004-01-21 20:17 ` pinskia at gcc dot gnu dot org
  2004-03-30 16:11 ` dnovillo at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-21 20:17 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement


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


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

* [Bug optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
  2004-01-20 15:13 ` [Bug optimization/13761] " pinskia at gcc dot gnu dot org
  2004-01-21 20:17 ` pinskia at gcc dot gnu dot org
@ 2004-03-30 16:11 ` dnovillo at gcc dot gnu dot org
  2004-03-30 16:12 ` dnovillo at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-03-30 16:11 UTC (permalink / raw)
  To: gcc-bugs



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


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


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

* [Bug optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (2 preceding siblings ...)
  2004-03-30 16:11 ` dnovillo at gcc dot gnu dot org
@ 2004-03-30 16:12 ` dnovillo at gcc dot gnu dot org
  2004-05-18 12:36 ` [Bug tree-optimization/13761] " dalej at apple dot com
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-03-30 16:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-03-30 16:12 -------

It's in my post-merge TODO list.

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (3 preceding siblings ...)
  2004-03-30 16:12 ` dnovillo at gcc dot gnu dot org
@ 2004-05-18 12:36 ` dalej at apple dot com
  2004-05-26 18:02 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dalej at apple dot com @ 2004-05-18 12:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dalej at apple dot com  2004-05-17 19:56 -------
Here's another example (for lno).  The two inner loops should have identical code.

int x; int y;
struct { int x; int y; } global;
int foo() {
  int i;
  for ( i=0; i<10; i++)
    y += x*x;
  for ( i=0; i<10; i++)
    global.y += global.x*global.x;
}

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (4 preceding siblings ...)
  2004-05-18 12:36 ` [Bug tree-optimization/13761] " dalej at apple dot com
@ 2004-05-26 18:02 ` pinskia at gcc dot gnu dot org
  2004-10-28 20:28 ` dnovillo at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-26 18:02 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.5.0                       |---


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (5 preceding siblings ...)
  2004-05-26 18:02 ` pinskia at gcc dot gnu dot org
@ 2004-10-28 20:28 ` dnovillo at gcc dot gnu dot org
  2004-10-28 20:34 ` dnovillo at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-10-28 20:28 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-10-28 20:28 -------

dberlin's field-based SSA work should help here.  Dan, want to take this one?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dberlin at gcc dot gnu dot
                   |                            |org
         AssignedTo|dnovillo at gcc dot gnu dot |unassigned at gcc dot gnu
                   |org                         |dot org
             Status|ASSIGNED                    |NEW


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (6 preceding siblings ...)
  2004-10-28 20:28 ` dnovillo at gcc dot gnu dot org
@ 2004-10-28 20:34 ` dnovillo at gcc dot gnu dot org
  2004-10-28 21:58 ` dberlin at dberlin dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-10-28 20:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dnovillo at gcc dot gnu dot org  2004-10-28 20:34 -------
*** Bug 13765 has been marked as a duplicate of this bug. ***

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (7 preceding siblings ...)
  2004-10-28 20:34 ` dnovillo at gcc dot gnu dot org
@ 2004-10-28 21:58 ` dberlin at dberlin dot org
  2004-10-28 21:59 ` dnovillo at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dberlin at dberlin dot org @ 2004-10-28 21:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at dberlin dot org  2004-10-28 21:58 -------
Subject: Re:  [tree-ssa] component refs to the
 same struct should not alias

> dberlin's field-based SSA work should help here.  Dan, want to take this one?

Sure.
Just reassign it to me
:)



-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (8 preceding siblings ...)
  2004-10-28 21:58 ` dberlin at dberlin dot org
@ 2004-10-28 21:59 ` dnovillo at gcc dot gnu dot org
  2004-12-20 16:35 ` dberlin at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dnovillo at gcc dot gnu dot org @ 2004-10-28 21:59 UTC (permalink / raw)
  To: gcc-bugs



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


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (9 preceding siblings ...)
  2004-10-28 21:59 ` dnovillo at gcc dot gnu dot org
@ 2004-12-20 16:35 ` dberlin at gcc dot gnu dot org
  2005-03-13  0:46 ` dberlin at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2004-12-20 16:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2004-12-20 16:35 -------
The structure-aliasing branch now has code (or will as soon as cvs finishes
committing) that will fix dale's testcaes to the extent  i can.

We produce identical code for both loops, now.


I haven't quite fixed dan n's testcase yet, because it involves indirect_refs.

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (10 preceding siblings ...)
  2004-12-20 16:35 ` dberlin at gcc dot gnu dot org
@ 2005-03-13  0:46 ` dberlin at gcc dot gnu dot org
  2005-04-23 16:52 ` steven at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2005-03-13  0:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2005-03-13 00:46 -------
Dale's testcase is now fixed.

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (11 preceding siblings ...)
  2005-03-13  0:46 ` dberlin at gcc dot gnu dot org
@ 2005-04-23 16:52 ` steven at gcc dot gnu dot org
  2005-04-23 18:41   ` Daniel Berlin
  2005-04-23 18:41 ` dberlin at dberlin dot org
                   ` (4 subsequent siblings)
  17 siblings, 1 reply; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-04-23 16:52 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-04-23 16:52 -------
Will the second part of the struct alias merge fix Dann's original 
test case?  ("http://gcc.gnu.org/wiki/Structure Aliasing Part II") 

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (12 preceding siblings ...)
  2005-04-23 16:52 ` steven at gcc dot gnu dot org
@ 2005-04-23 18:41 ` dberlin at dberlin dot org
  2005-07-25 15:29 ` steven at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: dberlin at dberlin dot org @ 2005-04-23 18:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2005-04-23 18:41 -------
Subject: Re:  [tree-ssa] component refs to the
	same struct should not alias

On Sat, 2005-04-23 at 16:52 +0000, steven at gcc dot gnu dot org wrote:
> ------- Additional Comments From steven at gcc dot gnu dot org  2005-04-23 16:52 -------
> Will the second part of the struct alias merge fix Dann's original 
> test case?  ("http://gcc.gnu.org/wiki/Structure Aliasing Part II") 
> 

Yes, but not immediately.

structure aliasing part ii is really two parts

First, is a new alias analyzer to handle structure fields, allow
inteprocedural analysis.
Second is improving our representation to handle base+offset
dereferences.

The second is a lot harder than one would think.




-- 


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


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

* Re: [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2005-04-23 16:52 ` steven at gcc dot gnu dot org
@ 2005-04-23 18:41   ` Daniel Berlin
  0 siblings, 0 replies; 20+ messages in thread
From: Daniel Berlin @ 2005-04-23 18:41 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs

On Sat, 2005-04-23 at 16:52 +0000, steven at gcc dot gnu dot org wrote:
> ------- Additional Comments From steven at gcc dot gnu dot org  2005-04-23 16:52 -------
> Will the second part of the struct alias merge fix Dann's original 
> test case?  ("http://gcc.gnu.org/wiki/Structure Aliasing Part II") 
> 

Yes, but not immediately.

structure aliasing part ii is really two parts

First, is a new alias analyzer to handle structure fields, allow
inteprocedural analysis.
Second is improving our representation to handle base+offset
dereferences.

The second is a lot harder than one would think.



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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (13 preceding siblings ...)
  2005-04-23 18:41 ` dberlin at dberlin dot org
@ 2005-07-25 15:29 ` steven at gcc dot gnu dot org
  2005-07-25 15:31 ` steven at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-07-25 15:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-07-25 15:28 -------
The example from comment #3 now optimizes to identical inner loops: 
 
;; Function foo (foo) 
 
foo () 
{ 
  int i.54; 
  int lsm_tmp.32; 
  int lsm_tmp.31; 
  int i; 
  int D.1628; 
  int D.1627; 
  int D.1623; 
  int x.0; 
 
<bb 0>: 
  x.0 = x; 
  D.1623 = x.0 * x.0; 
  lsm_tmp.32 = y; 
  i.54 = 0; 
 
<L0>:; 
  lsm_tmp.32 = (int) ((unsigned int) D.1623 + (unsigned int) lsm_tmp.32); 
  i.54 = i.54 + 1; 
  if (i.54 != 10) goto <L0>; else goto <L12>; 
 
<L12>:; 
  y = lsm_tmp.32; 
  D.1627 = global.x; 
  D.1628 = D.1627 * D.1627; 
  lsm_tmp.31 = global.y; 
  i = 0; 
 
<L3>:; 
  lsm_tmp.31 = (int) ((unsigned int) lsm_tmp.31 + (unsigned int) D.1628); 
  i = i + 1; 
  if (i != 10) goto <L3>; else goto <L5>; 
 
<L5>:; 
  global.y = lsm_tmp.31; 
  return; 
 
} 
 

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


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (14 preceding siblings ...)
  2005-07-25 15:29 ` steven at gcc dot gnu dot org
@ 2005-07-25 15:31 ` steven at gcc dot gnu dot org
  2005-07-25 15:50 ` dberlin at gcc dot gnu dot org
  2005-08-27  4:42 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-07-25 15:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2005-07-25 15:31 -------
Oddly, the test case from comment #1 is not fixed.  Sorry for the 
inconvenience. 

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


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (15 preceding siblings ...)
  2005-07-25 15:31 ` steven at gcc dot gnu dot org
@ 2005-07-25 15:50 ` dberlin at gcc dot gnu dot org
  2005-08-27  4:42 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 20+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2005-07-25 15:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2005-07-25 15:40 -------
Yes, it won't be fixed till 4.2, or the aliasing branch.

-- 


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


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

* [Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias
  2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
                   ` (16 preceding siblings ...)
  2005-07-25 15:50 ` dberlin at gcc dot gnu dot org
@ 2005-08-27  4:42 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-08-27  4:42 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |ASSIGNED


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


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

end of thread, other threads:[~2005-08-27  3:40 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-20  7:03 [Bug optimization/13761] New: [tree-ssa] component refs to the same struct should not alias dann at godzilla dot ics dot uci dot edu
2004-01-20 15:13 ` [Bug optimization/13761] " pinskia at gcc dot gnu dot org
2004-01-21 20:17 ` pinskia at gcc dot gnu dot org
2004-03-30 16:11 ` dnovillo at gcc dot gnu dot org
2004-03-30 16:12 ` dnovillo at gcc dot gnu dot org
2004-05-18 12:36 ` [Bug tree-optimization/13761] " dalej at apple dot com
2004-05-26 18:02 ` pinskia at gcc dot gnu dot org
2004-10-28 20:28 ` dnovillo at gcc dot gnu dot org
2004-10-28 20:34 ` dnovillo at gcc dot gnu dot org
2004-10-28 21:58 ` dberlin at dberlin dot org
2004-10-28 21:59 ` dnovillo at gcc dot gnu dot org
2004-12-20 16:35 ` dberlin at gcc dot gnu dot org
2005-03-13  0:46 ` dberlin at gcc dot gnu dot org
2005-04-23 16:52 ` steven at gcc dot gnu dot org
2005-04-23 18:41   ` Daniel Berlin
2005-04-23 18:41 ` dberlin at dberlin dot org
2005-07-25 15:29 ` steven at gcc dot gnu dot org
2005-07-25 15:31 ` steven at gcc dot gnu dot org
2005-07-25 15:50 ` dberlin at gcc dot gnu dot org
2005-08-27  4:42 ` pinskia 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).