public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
@ 2005-10-23  0:02 ` pinskia at gcc dot gnu dot org
  2005-10-30 22:53 ` mmitchel at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-23  0:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from pinskia at gcc dot gnu dot org  2005-10-23 00:02 -------
No longer working on this.  If someone to take my patch and update it and also
update the testsuite, that is ok with me.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|pinskia 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=17506


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
  2005-10-23  0:02 ` [Bug tree-optimization/17506] [4.0/4.1 regression] warning about uninitialized variable points to wrong location pinskia at gcc dot gnu dot org
@ 2005-10-30 22:53 ` mmitchel at gcc dot gnu dot org
  2005-10-30 23:40 ` steven at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-10-30 22:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from mmitchel at gcc dot gnu dot org  2005-10-30 22:53 -------
Leaving as P2; as stated in the audit trail, this problem has the potential to
seriously confuse people.


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
  2005-10-23  0:02 ` [Bug tree-optimization/17506] [4.0/4.1 regression] warning about uninitialized variable points to wrong location pinskia at gcc dot gnu dot org
  2005-10-30 22:53 ` mmitchel at gcc dot gnu dot org
@ 2005-10-30 23:40 ` steven at gcc dot gnu dot org
  2006-02-24  0:31 ` [Bug tree-optimization/17506] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2005-10-30 23:40 UTC (permalink / raw)
  To: gcc-bugs



-- 

steven at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |steven at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2005-02-26 18:42:11         |2005-10-30 23:39:58
               date|                            |


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-30 23:40 ` steven at gcc dot gnu dot org
@ 2006-02-24  0:31 ` mmitchel at gcc dot gnu dot org
  2006-05-12 13:42 ` rguenth at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-02-24  0:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #22 from mmitchel at gcc dot gnu dot org  2006-02-24 00:25 -------
This issue will not be resolved in GCC 4.1.0; retargeted at GCC 4.1.1.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.3                       |4.1.1


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2006-02-24  0:31 ` [Bug tree-optimization/17506] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2006-05-12 13:42 ` rguenth at gcc dot gnu dot org
  2006-05-25  2:32 ` mmitchel at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-05-12 13:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #23 from rguenth at gcc dot gnu dot org  2006-05-12 13:42 -------
The patch from comment #14 is not really useful as it f.i. warns for

int sink;
void bar()
{
    int j;
    sink = j;
}

t.c: In function 'bar':
t.c:5: warning: 'j' is used uninitialized in this function
t.c:4: note: 'j' was declared here


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-05-12 13:42 ` rguenth at gcc dot gnu dot org
@ 2006-05-25  2:32 ` mmitchel at gcc dot gnu dot org
  2006-06-04  9:29 ` steven at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25  2:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #24 from mmitchel at gcc dot gnu dot org  2006-05-25 02:32 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.1                       |4.1.2


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-05-25  2:32 ` mmitchel at gcc dot gnu dot org
@ 2006-06-04  9:29 ` steven at gcc dot gnu dot org
  2006-08-24 20:05 ` amylaar at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2006-06-04  9:29 UTC (permalink / raw)
  To: gcc-bugs



-- 

steven at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|steven 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=17506


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-06-04  9:29 ` steven at gcc dot gnu dot org
@ 2006-08-24 20:05 ` amylaar at gcc dot gnu dot org
  2006-08-25 20:42 ` kazu at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2006-08-24 20:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #25 from amylaar at gcc dot gnu dot org  2006-08-24 20:04 -------
Created an attachment (id=12131)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12131&action=view)
This patch checks if the warning location is within cfun.

I probably won't find CPU cycles to test this properly in the near future.


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-08-24 20:05 ` amylaar at gcc dot gnu dot org
@ 2006-08-25 20:42 ` kazu at gcc dot gnu dot org
  2006-08-28 17:28 ` kazu at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: kazu at gcc dot gnu dot org @ 2006-08-25 20:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #26 from kazu at gcc dot gnu dot org  2006-08-25 20:41 -------
I'm going to test the patch in Comment #25.


-- 

kazu at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-08-25 20:42 ` kazu at gcc dot gnu dot org
@ 2006-08-28 17:28 ` kazu at gcc dot gnu dot org
  2006-08-29 15:53 ` amylaar at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: kazu at gcc dot gnu dot org @ 2006-08-28 17:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #27 from kazu at gcc dot gnu dot org  2006-08-28 17:28 -------
The real fix it to issue "uninitialized warnings" before the inliner kicks in
but after we go into SSA, which is impossible until we start doing early SSA.

As Nathan suggests, this caveat should be mentioned in the release notes.


-- 

kazu at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-08-28 17:28 ` kazu at gcc dot gnu dot org
@ 2006-08-29 15:53 ` amylaar at gcc dot gnu dot org
  2006-08-29 17:20 ` nathan at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2006-08-29 15:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #28 from amylaar at gcc dot gnu dot org  2006-08-29 15:53 -------
Subject: Bug 17506

Author: amylaar
Date: Tue Aug 29 15:52:54 2006
New Revision: 116564

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116564
Log:
gcc:

2006-08-29  Nathan Sidwell  <nathan@codesourcery.com>
            J"orn Rennecke  <joern.rennecke@st.com>

        PR tree-optimization/17506
        * tree-ssa.c (warn_uninit): If warning about a location outside of
        the current function, note where the variable was declared.

testsuite:

2006-08-29  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
            Kazu Hirata  <kazu@codesourcery.com>

        PR tree-optimization/17506
        * gcc.dg/pr17506.c: New.

Added:
    trunk/gcc/testsuite/gcc.dg/pr17506.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa.c


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1/4.2 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2006-08-29 15:53 ` amylaar at gcc dot gnu dot org
@ 2006-08-29 17:20 ` nathan at gcc dot gnu dot org
  2006-08-30  3:33 ` [Bug tree-optimization/17506] [4.0/4.1 " pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-08-29 17:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #29 from nathan at gcc dot gnu dot org  2006-08-29 17:20 -------
(In reply to comment #28)

> 2006-08-29  Nathan Sidwell  <nathan@codesourcery.com>
>             J"orn Rennecke  <joern.rennecke@st.com>
> 
>         PR tree-optimization/17506
>         * tree-ssa.c (warn_uninit): If warning about a location outside of
>         the current function, note where the variable was declared.

I have no recollection of writing any patch about this (and have no objection
to being removed from the credits :)


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2006-08-29 17:20 ` nathan at gcc dot gnu dot org
@ 2006-08-30  3:33 ` pinskia at gcc dot gnu dot org
  2006-08-30 18:47 ` amylaar at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-08-30  3:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #30 from pinskia at gcc dot gnu dot org  2006-08-30 03:33 -------
I will file tomorrow the bug reports about the cases I mentioned to the patches
list.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.0/4.1/4.2 regression]    |[4.0/4.1 regression]
                   |warning about uninitialized |warning about uninitialized
                   |variable points to wrong    |variable points to wrong
                   |location                    |location


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2006-08-30  3:33 ` [Bug tree-optimization/17506] [4.0/4.1 " pinskia at gcc dot gnu dot org
@ 2006-08-30 18:47 ` amylaar at gcc dot gnu dot org
  2006-08-30 18:58 ` amylaar at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2006-08-30 18:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #31 from amylaar at gcc dot gnu dot org  2006-08-30 18:47 -------
(In reply to comment #29)
> (In reply to comment #28)
> 
> > 2006-08-29  Nathan Sidwell  <nathan@codesourcery.com>
> >             J"orn Rennecke  <joern.rennecke@st.com>
> > 
> >         PR tree-optimization/17506
> >         * tree-ssa.c (warn_uninit): If warning about a location outside of
> >         the current function, note where the variable was declared.
> 
> I have no recollection of writing any patch about this (and have no objection
> to being removed from the credits :)
> 

Oops, I mixed up comments #11 and #12.


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2006-08-30 18:47 ` amylaar at gcc dot gnu dot org
@ 2006-08-30 18:58 ` amylaar at gcc dot gnu dot org
  2006-10-18  9:27 ` rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2006-08-30 18:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #32 from amylaar at gcc dot gnu dot org  2006-08-30 18:58 -------
Subject: Bug 17506

Author: amylaar
Date: Wed Aug 30 18:57:54 2006
New Revision: 116593

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116593
Log:
Fixed attribution for patch for PR tree-optimization/17506

Modified:
    trunk/gcc/ChangeLog


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2006-08-30 18:58 ` amylaar at gcc dot gnu dot org
@ 2006-10-18  9:27 ` rguenth at gcc dot gnu dot org
  2007-02-14  9:03 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-10-18  9:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #33 from rguenth at gcc dot gnu dot org  2006-10-18 09:27 -------
A backport bootstraps and regtests ok on the 4.1 branch.  Don't know if the
side-effects of this patch makes it appplicable for backporting though.


-- 


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2006-10-18  9:27 ` rguenth at gcc dot gnu dot org
@ 2007-02-14  9:03 ` mmitchel at gcc dot gnu dot org
  2007-04-03  5:20 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-14  9:03 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.2                       |4.1.3


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2007-02-14  9:03 ` mmitchel at gcc dot gnu dot org
@ 2007-04-03  5:20 ` pinskia at gcc dot gnu dot org
  2007-08-15 15:23 ` manu at gcc dot gnu dot org
  2008-02-20 22:34 ` [Bug tree-optimization/17506] [4.0/4.1 Regression] " rguenth at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-04-03  5:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #34 from pinskia at gcc dot gnu dot org  2007-04-03 06:19 -------
*** Bug 31181 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ahs3 at fc dot hp dot com


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


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

* [Bug tree-optimization/17506] [4.0/4.1 regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2007-04-03  5:20 ` pinskia at gcc dot gnu dot org
@ 2007-08-15 15:23 ` manu at gcc dot gnu dot org
  2008-02-20 22:34 ` [Bug tree-optimization/17506] [4.0/4.1 Regression] " rguenth at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: manu at gcc dot gnu dot org @ 2007-08-15 15:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #35 from manu at gcc dot gnu dot org  2007-08-15 15:23 -------
If there are not going to be more releases of GCC 4.0 or 4.1, I guess we can
close this, no?


-- 

manu at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/17506] [4.0/4.1 Regression]  warning about uninitialized variable points to wrong location
       [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2007-08-15 15:23 ` manu at gcc dot gnu dot org
@ 2008-02-20 22:34 ` rguenth at gcc dot gnu dot org
  19 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-02-20 22:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #36 from rguenth at gcc dot gnu dot org  2008-02-20 22:34 -------
Fixed since 4.2.0, wontfix for older branches.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to fail|4.0.0                       |4.0.0 4.1.3
      Known to work|3.4.2                       |3.4.2 4.2.0
         Resolution|                            |FIXED
            Summary|[4.0/4.1 regression]        |[4.0/4.1 Regression]
                   |warning about uninitialized |warning about uninitialized
                   |variable points to wrong    |variable points to wrong
                   |location                    |location
   Target Milestone|4.1.3                       |4.2.0


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


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

end of thread, other threads:[~2008-02-20 22:34 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-17506-361@http.gcc.gnu.org/bugzilla/>
2005-10-23  0:02 ` [Bug tree-optimization/17506] [4.0/4.1 regression] warning about uninitialized variable points to wrong location pinskia at gcc dot gnu dot org
2005-10-30 22:53 ` mmitchel at gcc dot gnu dot org
2005-10-30 23:40 ` steven at gcc dot gnu dot org
2006-02-24  0:31 ` [Bug tree-optimization/17506] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
2006-05-12 13:42 ` rguenth at gcc dot gnu dot org
2006-05-25  2:32 ` mmitchel at gcc dot gnu dot org
2006-06-04  9:29 ` steven at gcc dot gnu dot org
2006-08-24 20:05 ` amylaar at gcc dot gnu dot org
2006-08-25 20:42 ` kazu at gcc dot gnu dot org
2006-08-28 17:28 ` kazu at gcc dot gnu dot org
2006-08-29 15:53 ` amylaar at gcc dot gnu dot org
2006-08-29 17:20 ` nathan at gcc dot gnu dot org
2006-08-30  3:33 ` [Bug tree-optimization/17506] [4.0/4.1 " pinskia at gcc dot gnu dot org
2006-08-30 18:47 ` amylaar at gcc dot gnu dot org
2006-08-30 18:58 ` amylaar at gcc dot gnu dot org
2006-10-18  9:27 ` rguenth at gcc dot gnu dot org
2007-02-14  9:03 ` mmitchel at gcc dot gnu dot org
2007-04-03  5:20 ` pinskia at gcc dot gnu dot org
2007-08-15 15:23 ` manu at gcc dot gnu dot org
2008-02-20 22:34 ` [Bug tree-optimization/17506] [4.0/4.1 Regression] " 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).