public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
       [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
@ 2005-10-14 10:46 ` nathan at gcc dot gnu dot org
  2005-10-14 16:10 ` nathan at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: nathan at gcc dot gnu dot org @ 2005-10-14 10:46 UTC (permalink / raw)
  To: gcc-bugs



-- 

nathan at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |nathan at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2005-07-12 06:01:23         |2005-10-14 10:46:38
               date|                            |


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
       [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
  2005-10-14 10:46 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted nathan at gcc dot gnu dot org
@ 2005-10-14 16:10 ` nathan at gcc dot gnu dot org
  2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: nathan at gcc dot gnu dot org @ 2005-10-14 16:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from nathan at gcc dot gnu dot org  2005-10-14 16:10 -------
the patch in #4 is definitely wrong, the right patch will be to the C++ FE, not
the common code.


-- 


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
       [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
@ 2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
  2005-10-14 16:39 ` nathan at gcc dot gnu dot org
  4 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-10-14 16:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from cvs-commit at gcc dot gnu dot org  2005-10-14 16:36 -------
Subject: Bug 17796

CVSROOT:        /cvs/gcc
Module name:    gcc
Changes by:     nathan@gcc.gnu.org      2005-10-14 16:36:49

Modified files:
        gcc/cp         : ChangeLog optimize.c 

Log message:
        PR c++/17796
        * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
        (maybe_clone_body): Track the first clone.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.4931&r2=1.4932
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/optimize.c.diff?cvsroot=gcc&r1=1.118&r2=1.119


-- 


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
       [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
  2005-10-14 10:46 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted nathan at gcc dot gnu dot org
  2005-10-14 16:10 ` nathan at gcc dot gnu dot org
@ 2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
  2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
  2005-10-14 16:39 ` nathan at gcc dot gnu dot org
  4 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-10-14 16:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from cvs-commit at gcc dot gnu dot org  2005-10-14 16:36 -------
Subject: Bug 17796

CVSROOT:        /cvs/gcc
Module name:    gcc
Branch:         gcc-4_0-branch
Changes by:     nathan@gcc.gnu.org      2005-10-14 16:36:37

Modified files:
        gcc/cp         : ChangeLog optimize.c 

Log message:
        PR c++/17796
        * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
        (maybe_clone_body): Track the first clone.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.4648.2.134&r2=1.4648.2.135
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/optimize.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.114&r2=1.114.34.1


-- 


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
       [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
@ 2005-10-14 16:39 ` nathan at gcc dot gnu dot org
  4 siblings, 0 replies; 8+ messages in thread
From: nathan at gcc dot gnu dot org @ 2005-10-14 16:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from nathan at gcc dot gnu dot org  2005-10-14 16:39 -------
Fixed mainline and 4.0.
2005-10-14  Nathan Sidwell  <nathan@codesourcery.com>

        PR c++/17796
        * optimize.c (update_cloned_parm): Add FIRST parameter. Use it.
        (maybe_clone_body): Track the first clone.

Will not fix for 3.4 (it's a minor annoyance)


-- 

nathan at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
  2004-10-02 20:06 [Bug c++/17796] New: " jakub at gcc dot gnu dot org
  2005-05-19 17:30 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] " mmitchel at gcc dot gnu dot org
  2005-07-22 21:15 ` pinskia at gcc dot gnu dot org
@ 2005-09-27 16:01 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-09-27 16:01 UTC (permalink / raw)
  To: gcc-bugs



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


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
  2004-10-02 20:06 [Bug c++/17796] New: " jakub at gcc dot gnu dot org
  2005-05-19 17:30 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] " mmitchel at gcc dot gnu dot org
@ 2005-07-22 21:15 ` pinskia at gcc dot gnu dot org
  2005-09-27 16:01 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-22 21:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-22 21:12 -------
Moving to 4.0.2 pre Mark.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.5                       |4.0.2


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


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

* [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted.
  2004-10-02 20:06 [Bug c++/17796] New: " jakub at gcc dot gnu dot org
@ 2005-05-19 17:30 ` mmitchel at gcc dot gnu dot org
  2005-07-22 21:15 ` pinskia at gcc dot gnu dot org
  2005-09-27 16:01 ` mmitchel at gcc dot gnu dot org
  2 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-05-19 17:30 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.4                       |3.4.5


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


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

end of thread, other threads:[~2005-10-14 16:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-17796-87@http.gcc.gnu.org/bugzilla/>
2005-10-14 10:46 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] Too many unused parameter warnings emitted nathan at gcc dot gnu dot org
2005-10-14 16:10 ` nathan at gcc dot gnu dot org
2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
2005-10-14 16:36 ` cvs-commit at gcc dot gnu dot org
2005-10-14 16:39 ` nathan at gcc dot gnu dot org
2004-10-02 20:06 [Bug c++/17796] New: " jakub at gcc dot gnu dot org
2005-05-19 17:30 ` [Bug c++/17796] [3.4/4.0/4.1 Regression] " mmitchel at gcc dot gnu dot org
2005-07-22 21:15 ` pinskia at gcc dot gnu dot org
2005-09-27 16:01 ` mmitchel 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).