/cp
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 6 Mar 2009 23:52:02 +0000 (23:52 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 6 Mar 2009 23:52:02 +0000 (23:52 +0000)
2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/33492
* error.c (dump_expr): Don't try to print THROW_EXPRs in full.

/testsuite
2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/33492
* g++.dg/other/error32.C: New.

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

gcc/cp/ChangeLog
gcc/cp/error.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/other/error32.C [new file with mode: 0644]

index 7206639..df07da5 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/33492
+       * error.c (dump_expr): Don't try to print THROW_EXPRs in full.
+
 2009-03-06  Alexandre Oliva  <aoliva@redhat.com>
 
        * decl.c (record_builtin_java_type): Use canonicalized integer
index e2cb8bf..5eb8f28 100644 (file)
@@ -1508,8 +1508,9 @@ dump_expr (tree t, int flags)
       break;
 
     case THROW_EXPR:
-      pp_cxx_identifier (cxx_pp, "throw");
-      dump_expr (TREE_OPERAND (t, 0), flags);
+      /* While waiting for caret diagnostics, avoid printing
+        __cxa_allocate_exception, __cxa_throw, and the like.  */
+      pp_cxx_identifier (cxx_pp, "<throw-expression>");
       break;
 
     case PTRMEM_CST:
index c349894..891bdb7 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-06  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/33492
+       * g++.dg/other/error32.C: New.
+
 2009-03-06  Jakub Jelinek  <jakub@redhat.com>
 
        PR middle-end/39360
diff --git a/gcc/testsuite/g++.dg/other/error32.C b/gcc/testsuite/g++.dg/other/error32.C
new file mode 100644 (file)
index 0000000..35c64c4
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/33492
+// { dg-options "" }
+
+void foo()
+{
+  if (throw 0) // { dg-error "could not convert .\\<throw-expression\\>. to .bool." }
+    ;
+}