OSDN Git Service

PR c/40033
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 24 Oct 2009 00:44:17 +0000 (00:44 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 24 Oct 2009 00:44:17 +0000 (00:44 +0000)
* c-typeck.c (c_finish_stmt_expr): Do not wrap error_mark_node in
a C_MAYBE_CONST_EXPR.

testsuite:
* gcc.dg/noncompile/pr40033-1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@153522 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/c-typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/noncompile/pr40033-1.c [new file with mode: 0644]

index e7068a9..c85ff0e 100644 (file)
@@ -1,3 +1,9 @@
+2009-10-23  Joseph Myers  <joseph@codesourcery.com>
+
+       PR c/40033
+       * c-typeck.c (c_finish_stmt_expr): Do not wrap error_mark_node in
+       a C_MAYBE_CONST_EXPR.
+
 2009-10-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        PR target/41787
index e7425a7..3274e07 100644 (file)
@@ -8653,11 +8653,13 @@ c_finish_stmt_expr (location_t loc, tree body)
       goto continue_searching;
     }
 
+  if (last == error_mark_node)
+    return last;
+
   /* In the case that the BIND_EXPR is not necessary, return the
      expression out from inside it.  */
-  if (last == error_mark_node
-      || (last == BIND_EXPR_BODY (body)
-         && BIND_EXPR_VARS (body) == NULL))
+  if (last == BIND_EXPR_BODY (body)
+      && BIND_EXPR_VARS (body) == NULL)
     {
       /* Even if this looks constant, do not allow it in a constant
         expression.  */
index c44b4d7..e7ba1b6 100644 (file)
@@ -1,3 +1,8 @@
+2009-10-23  Joseph Myers  <joseph@codesourcery.com>
+
+       PR c/40033
+       * gcc.dg/noncompile/pr40033-1.c: New test.
+
 2009-10-23  Dodji Seketeli  <dodji@redhat.com>
 
        PR c++/40808
diff --git a/gcc/testsuite/gcc.dg/noncompile/pr40033-1.c b/gcc/testsuite/gcc.dg/noncompile/pr40033-1.c
new file mode 100644 (file)
index 0000000..4f07442
--- /dev/null
@@ -0,0 +1,7 @@
+/* ICE from error_mark_node being wrapped in a C_MAYBE_CONST_EXPR.  PR
+   40033.  */
+
+void foo()
+{
+  ({ 0,; }); /* { dg-error "expected" } */
+}