public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/43728]  New: Warning for redundant static function prototypes
@ 2010-04-12 15:06 jakub at gcc dot gnu dot org
  2010-04-12 15:15 ` [Bug c/43728] " jakub at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: jakub at gcc dot gnu dot org @ 2010-04-12 15:06 UTC (permalink / raw)
  To: gcc-bugs

Prototypes for static functions that aren't used in between the prototype and
the actual static function definition are useless and could be cleaned up, I
think gcc itself has thousands of such useless prototypes.

It isn't hard to add a warning for this.  Given:
static void foo (int);

#ifdef D
void bar (void)
{
  foo (0);
}
#endif

static void foo (int x)
{
  x++;
}

void baz (void)
{
  foo (0);
}

we'd warn about the foo prototype (unless compiling with -DD).


-- 
           Summary: Warning for redundant static function prototypes
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jakub at gcc dot gnu dot org


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


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

end of thread, other threads:[~2010-04-14 20:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-12 15:06 [Bug c/43728] New: Warning for redundant static function prototypes jakub at gcc dot gnu dot org
2010-04-12 15:15 ` [Bug c/43728] " jakub at gcc dot gnu dot org
2010-04-12 15:16 ` jakub at gcc dot gnu dot org
2010-04-12 15:38 ` manu at gcc dot gnu dot org
2010-04-12 16:17 ` jason at gcc dot gnu dot org
2010-04-12 16:29 ` jakub at gcc dot gnu dot org
2010-04-14 16:06 ` jakub at gcc dot gnu dot org
2010-04-14 20:26 ` jason 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).