public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
* Potential cc bug - not sure
@ 2015-01-01 20:43 Anthony
  0 siblings, 0 replies; only message in thread
From: Anthony @ 2015-01-01 20:43 UTC (permalink / raw)
  To: overseers

Hi Overseers,

I'm not sure if this is a bug because I'm not too familiar with the 
standards. I didn't log it so as not to pollute bugzilla.

Happy New Year!

Thanks,
Anthony



/* bug.c

Bug title: No warning to report an unreachable statement

GCC version and build info:
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.1-19' 
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs 
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr 
--program-suffix=-4.9 --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib 
--enable-nls --with-sysroot=/ --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin 
--with-system-zlib --disable-browser-plugin --enable-java-awt=gtk 
--enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre 
--enable-java-home 
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64 
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64 
--with-arch-directory=amd64 
--with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc 
--enable-multiarch --with-arch-32=i586 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.1 (Debian 4.9.1-19)

Description:
cc gives no -Wall warning for the snippet below, which, to me, 
represents a clear control-flow logic error. The program compiles fine, 
runs fine, prints "Hi!", and exits fine.

*/

#include <stdio.h>

int f1() {
   return fprintf(stdout,"Hi!\n");
   puts("Unreachable statement, but no gcc warning.");
}

int main() {
   f1();
   return 0;
}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-01-01 20:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-01 20:43 Potential cc bug - not sure Anthony

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).