public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++
@ 2003-11-16 12:33 debian-gcc at lists dot debian dot org
  2003-11-16 15:19 ` [Bug c++/13070] [3.3/3.4 " pinskia at gcc dot gnu dot org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2003-11-16 12:33 UTC (permalink / raw)
  To: gcc-bugs

[ forwarded from http://bugs.debian.org/217075 ]

The warning is printed, if gcc is used, but not, if g++ is used.

I'm confused about the -Wformat behaviour in newer g++ 3.3 releases.
It works for plain C, but seems to be ignored for C++ (in some cases
at least).  Look at this:

egon@tuscan:~$ cat testik.cc
#include <stdio.h>

int main()
{
  printf("%d\n", 1, 1);
}
egon@tuscan:~$ g++-3.2 -Wformat testik.cc
testik.cc: In function `int main()':
testik.cc:5: warning: too many arguments for format
egon@tuscan:~$ g++-3.3 -Wformat testik.cc
egon@tuscan:~$

-- 
           Summary: [3.3 / 3.4 regression] -Wformat option ignored in g++
           Product: gcc
           Version: 3.3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: debian-gcc at lists dot debian dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
@ 2003-11-16 15:19 ` pinskia at gcc dot gnu dot org
  2003-11-19 16:12 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-16 15:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-16 15:19 -------
I can confirm this.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |diagnostic
   Last reconfirmed|0000-00-00 00:00:00         |2003-11-16 15:19:25
               date|                            |
            Summary|[3.3 / 3.4 regression] -    |[3.3/3.4 regression] -
                   |Wformat option ignored in   |Wformat option ignored in
                   |g++                         |g++
   Target Milestone|---                         |3.3.3


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
  2003-11-16 15:19 ` [Bug c++/13070] [3.3/3.4 " pinskia at gcc dot gnu dot org
@ 2003-11-19 16:12 ` pinskia at gcc dot gnu dot org
  2003-12-10 22:57 ` janis187 at us dot ibm dot com
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-19 16:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-19 16:12 -------
*** Bug 13123 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jthorn at aei dot mpg dot de


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
  2003-11-16 15:19 ` [Bug c++/13070] [3.3/3.4 " pinskia at gcc dot gnu dot org
  2003-11-19 16:12 ` pinskia at gcc dot gnu dot org
@ 2003-12-10 22:57 ` janis187 at us dot ibm dot com
  2003-12-21 21:30 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: janis187 at us dot ibm dot com @ 2003-12-10 22:57 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From janis187 at us dot ibm dot com  2003-12-10 22:56 -------
The regression in PR 13070 was introduced or exposed with this patch
to both mainline and the 3.3-branch:

2003-03-17  Roger Sayle  <roger@eyesopen.com>

        * decl.c (duplicate_decls): Use the new type when prototyping
        anticipated decls, even when the types match.  This defines the
        exception list for the built-in function.

The regression hunt took place on i686-pc-linux-gnu using the following
testcase, modified to not require header files, with -Wformat:

extern "C" int printf (const char *, ...);
int main ()
{
  printf ("%d\n", 1, 1);
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |roger at eyesopen dot com


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (2 preceding siblings ...)
  2003-12-10 22:57 ` janis187 at us dot ibm dot com
@ 2003-12-21 21:30 ` pinskia at gcc dot gnu dot org
  2003-12-24 22:07 ` gdr at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-21 21:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-21 20:59 -------
Roger this is caused by your patch would you mind fixing it?

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


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (3 preceding siblings ...)
  2003-12-21 21:30 ` pinskia at gcc dot gnu dot org
@ 2003-12-24 22:07 ` gdr at gcc dot gnu dot org
  2003-12-26 13:45 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdr at gcc dot gnu dot org @ 2003-12-24 22:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From gdr at gcc dot gnu dot org  2003-12-24 22:02 -------
Roger --
Do you plan to investigate this?

-- 


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (4 preceding siblings ...)
  2003-12-24 22:07 ` gdr at gcc dot gnu dot org
@ 2003-12-26 13:45 ` pinskia at gcc dot gnu dot org
  2003-12-28 23:02 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-26 13:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-26 05:48 -------
Patch here: <http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02076.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
   Last reconfirmed|2003-11-16 15:19:25         |2003-12-26 05:48:55
               date|                            |


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


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

* [Bug c++/13070] [3.3/3.4 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (5 preceding siblings ...)
  2003-12-26 13:45 ` pinskia at gcc dot gnu dot org
@ 2003-12-28 23:02 ` cvs-commit at gcc dot gnu dot org
  2003-12-28 23:14 ` [Bug c++/13070] [3.3 " pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-12-28 23:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-12-28 22:22 -------
Subject: Bug 13070

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	sayle@gcc.gnu.org	2003-12-28 22:22:13

Modified files:
	gcc/cp         : ChangeLog decl.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/warn: format3.C 

Log message:
	PR c++/13070
	* decl.c (duplicate_decls): When setting the type of an anticipated
	declaration, merge the existing type attributes.
	
	* g++.dg/warn/format3.C: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3835&r2=1.3836
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/decl.c.diff?cvsroot=gcc&r1=1.1167&r2=1.1168
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3312&r2=1.3313
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/warn/format3.C.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug c++/13070] [3.3 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (6 preceding siblings ...)
  2003-12-28 23:02 ` cvs-commit at gcc dot gnu dot org
@ 2003-12-28 23:14 ` pinskia at gcc dot gnu dot org
  2003-12-29  8:14 ` cvs-commit at gcc dot gnu dot org
  2003-12-29  8:30 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-28 23:14 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-28 23:05 -------
Only a 3.3 Regression now.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[3.3/3.4 regression] -      |[3.3 regression] -Wformat
                   |Wformat option ignored in   |option ignored in g++
                   |g++                         |


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


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

* [Bug c++/13070] [3.3 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (7 preceding siblings ...)
  2003-12-28 23:14 ` [Bug c++/13070] [3.3 " pinskia at gcc dot gnu dot org
@ 2003-12-29  8:14 ` cvs-commit at gcc dot gnu dot org
  2003-12-29  8:30 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-12-29  8:14 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-12-29 05:32 -------
Subject: Bug 13070

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	sayle@gcc.gnu.org	2003-12-29 05:32:32

Modified files:
	gcc/cp         : ChangeLog decl.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/warn: format3.C 

Log message:
	PR c++/13070
	* decl.c (duplicate_decls): When setting the type of an anticipated
	declaration, merge the existing type attributes.
	
	* g++.dg/warn/format3.C: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.3076.2.230&r2=1.3076.2.231
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/decl.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.965.2.67&r2=1.965.2.68
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.346&r2=1.2261.2.347
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/warn/format3.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1



-- 


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


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

* [Bug c++/13070] [3.3 regression] -Wformat option ignored in g++
  2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
                   ` (8 preceding siblings ...)
  2003-12-29  8:14 ` cvs-commit at gcc dot gnu dot org
@ 2003-12-29  8:30 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-29  8:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-29 06:25 -------
Fixed for 3.3.3 also.

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


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


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

end of thread, other threads:[~2003-12-29  6:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-16 12:33 [Bug c++/13070] New: [3.3 / 3.4 regression] -Wformat option ignored in g++ debian-gcc at lists dot debian dot org
2003-11-16 15:19 ` [Bug c++/13070] [3.3/3.4 " pinskia at gcc dot gnu dot org
2003-11-19 16:12 ` pinskia at gcc dot gnu dot org
2003-12-10 22:57 ` janis187 at us dot ibm dot com
2003-12-21 21:30 ` pinskia at gcc dot gnu dot org
2003-12-24 22:07 ` gdr at gcc dot gnu dot org
2003-12-26 13:45 ` pinskia at gcc dot gnu dot org
2003-12-28 23:02 ` cvs-commit at gcc dot gnu dot org
2003-12-28 23:14 ` [Bug c++/13070] [3.3 " pinskia at gcc dot gnu dot org
2003-12-29  8:14 ` cvs-commit at gcc dot gnu dot org
2003-12-29  8:30 ` 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).