public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/44128]  New: C++ frontend not warn on type shadowing with -Wshadow
@ 2010-05-13 23:03 lcwu at gcc dot gnu dot org
  2010-07-24 21:29 ` [Bug c++/44128] " pinskia at gcc dot gnu dot org
  0 siblings, 1 reply; 3+ messages in thread
From: lcwu at gcc dot gnu dot org @ 2010-05-13 23:03 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1145 bytes --]

This bug is a follow-up to bug c++/44122.

Given the following program:

$ cat t.c

typedef long Py_ssize_t;

void bar() {

 typedef int Py_ssize_t;
 Py_ssize_t pos;
}

When compiled with the C compiler with -Wshadow flag, a shadow warning is
emitted.

$ gcc -c t.c -Wshadow
t.c: In function ‘bar’:
t.c:5:14: warning: declaration of ‘Py_ssize_t’ shadows a global declaration
[-Wshadow]
t.c:1:14: warning: shadowed declaration is here [-Wshadow]

However, when using the C++ compiler with the same flag, no warning is emitted.

$ g++ -c t.c -Wshadow

I think C++ frontend should warn on this case as the C frontend.


-- 
           Summary: C++ frontend not warn on type shadowing with -Wshadow
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: lcwu at gcc dot gnu dot org
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


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

end of thread, other threads:[~2011-11-05  3:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-44128-4@http.gcc.gnu.org/bugzilla/>
2011-11-05  1:25 ` [Bug c++/44128] C++ frontend not warn on type shadowing with -Wshadow paolo.carlini at oracle dot com
2011-11-05  3:44 ` jason at gcc dot gnu.org
2010-05-13 23:03 [Bug c++/44128] New: " lcwu at gcc dot gnu dot org
2010-07-24 21:29 ` [Bug c++/44128] " 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).