This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/11459] New: -stdc=c90 -pedantic warns about C90's non long-long support when in C99 mode
- From: "debian-gcc at lists dot debian dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Jul 2003 04:56:39 -0000
- Subject: [Bug c/11459] New: -stdc=c90 -pedantic warns about C90's non long-long support when in C99 mode
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11459
Summary: -stdc=c90 -pedantic warns about C90's non long-long
support when in C99 mode
Product: gcc
Version: 3.3.1
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
[forwarded from http://bugs.debian.org/200392]
$ cat foo.c
long long i;
$ gcc -pedantic -std=c99 -Wall -c foo.c
foo.c:1: warning: ISO C90 does not support `long long'
no warning without -pedantic