From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25684 invoked by alias); 4 May 2012 12:56:21 -0000 Received: (qmail 25673 invoked by uid 22791); 4 May 2012 12:56:20 -0000 X-SWARE-Spam-Status: No, hits=-3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 04 May 2012 12:56:08 +0000 From: "vincent-gcc at vinc17 dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/53232] New: No warning for main() without a return statement with -std=c99 Date: Fri, 04 May 2012 12:56:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: vincent-gcc at vinc17 dot net X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-05/txt/msg00424.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53232 Bug #: 53232 Summary: No warning for main() without a return statement with -std=c99 Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: minor Priority: P3 Component: c AssignedTo: unassigned@gcc.gnu.org ReportedBy: vincent-gcc@vinc17.net On the following program, GCC (4.4 to 4.7 at least) invoked with -std=c99 -Wreturn-type doesn't give a warning about the missing return statement. #include static int i = 0; int main (void) { if (i++ == 0) printf ("%d\n", main ()); } According to the C99 rules, it seems that the return statement is optional only for program termination. Though this is ambiguous, someone else at least has the same interpretation as me: http://groups.google.com/group/comp.std.c/msg/c2f56fecfb699952 Before seeing this message, I posted http://groups.google.com/group/comp.std.c/browse_thread/thread/0187ef7b23bedf16 to comp.std.c (Subject: main function without a return statement in C99/C11). Also, I think that the warning should be given in every case for the following reasons: * A missing return statement may be unintentional (I think that implicit values like here should be discouraged in general, and that the C99 rule is there more to avoid undefined behavior than to save space). * Compatibility with C90 and with freestanding environments. * It is difficult to guarantee that main() will not be called from another C file.