re PR c/20000 (missing warning for noreturn function returning non-void)
authorManuel López-Ibáñez <manu@gcc.gnu.org>
Sun, 6 Jun 2010 16:40:18 +0000 (16:40 +0000)
committerManuel López-Ibáñez <manu@gcc.gnu.org>
Sun, 6 Jun 2010 16:40:18 +0000 (16:40 +0000)
2010-06-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>

PR c/20000
        * c-decl.c (grokdeclarator): Delete warning.
testsuite/
        * c-c++-common/pr20000.c: New.

From-SVN: r160346

gcc/ChangeLog
gcc/c-decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/pr20000.c [new file with mode: 0644]

index 561371329c3f847dc4b0e2810582de3435783149..b3ef9444b8521a72aebd0d26ce0d3745ba53f866 100644 (file)
@@ -1,3 +1,8 @@
+2010-06-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
+
+       PR c/20000
+        * c-decl.c (grokdeclarator): Delete warning.
+
 2010-06-06  Eric Botcazou  <ebotcazou@adacore.com>
 
        * stor-layout.c (self_referential_size): Set UNKNOWN_LOCATION on the
index 2485bf44c107101f1df9f43a6cc8e93c80c38ba0..96ef29998445cc4c6760efe0861adf5ec5f7c1a2 100644 (file)
@@ -5901,12 +5901,6 @@ grokdeclarator (const struct c_declarator *declarator,
          pedwarn (loc, OPT_pedantic,
                   "ISO C forbids qualified function types");
 
-       /* GNU C interprets a volatile-qualified function type to indicate
-          that the function does not return.  */
-       if ((type_quals & TYPE_QUAL_VOLATILE)
-           && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
-         warning_at (loc, 0, "%<noreturn%> function returns non-void value");
-
        /* Every function declaration is an external reference
           (DECL_EXTERNAL) except for those which are not at file
           scope and are explicitly declared "auto".  This is
index 4400b9a502a16e9785fb7e661b785beb80111139..bda499ed9ce335e83a7b7acea28d566282f992cb 100644 (file)
@@ -1,3 +1,8 @@
+2010-06-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
+
+       PR c/20000
+        * c-c++-common/pr20000.c: New.
+
 2010-06-05  Fabien Chêne  <fabien@gcc.gnu.org>
 
        PR c++/44086
diff --git a/gcc/testsuite/c-c++-common/pr20000.c b/gcc/testsuite/c-c++-common/pr20000.c
new file mode 100644 (file)
index 0000000..1fcd178
--- /dev/null
@@ -0,0 +1,32 @@
+/* PR c/20000 We only want to warn if the function returns
+   explicitly. We do not care about the return type.  */
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+int g(void) __attribute__((noreturn)); 
+int g2(void) __attribute__((noreturn)); /* { dg-bogus ".noreturn. function returns non-void value" } */
+void h(void) __attribute__((noreturn));
+
+
+int g(void) {
+  return 1; /* { dg-warning "function declared 'noreturn' has a 'return' statement" } */
+} /* { dg-warning "'noreturn' function does return" } */
+
+int g2(void) {
+  h();
+}
+
+typedef int ft(void);
+volatile ft vg;
+volatile ft vg2;
+
+int vg(void); 
+int vg2(void); /* { dg-bogus ".noreturn. function returns non-void value" } */
+
+int vg(void) {
+  return 1; /* { dg-warning "function declared 'noreturn' has a 'return' statement" "" { target c } 27 } */
+} /* { dg-warning "'noreturn' function does return" "" { target c } 28  } */
+
+int vg2(void) {
+  h();
+}