]> gcc.gnu.org Git - gcc.git/commitdiff
* dump.c (dequeue_and_dump): Handle CTOR_STMTs.
authorMark Mitchell <mark@codesourcery.com>
Wed, 22 Dec 1999 18:00:58 +0000 (18:00 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 22 Dec 1999 18:00:58 +0000 (18:00 +0000)
From-SVN: r31073

gcc/cp/ChangeLog
gcc/cp/dump.c

index 25c9105284c0c551e1e110a3ad216835974b83d1..64c7279eab65543c9972313a0caf43b13d839c7d 100644 (file)
@@ -1,3 +1,7 @@
+1999-12-22  Mark Mitchell  <mark@codesourcery.com>
+
+       * dump.c (dequeue_and_dump): Handle CTOR_STMTs.
+
 1999-12-22  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
 
        * error.c (dump_decl): Support named return values.
index f66a5f1c8e24a65937d89b21c3a9cbecb493402b..173cbfaa7d3dca0f4e1e7979131d3697ccae33ac 100644 (file)
@@ -646,6 +646,15 @@ dequeue_and_dump (di)
       dump_next_stmt (di, t);
       break;
 
+    case CTOR_STMT:
+      dump_stmt (di, t);
+      if (CTOR_BEGIN_P (t))
+       dump_string (di, "begn");
+      else
+       dump_string (di, "end");
+      dump_next_stmt (di, t);
+      break;
+
     case DECL_STMT:
       dump_stmt (di, t);
       dump_child ("decl", DECL_STMT_DECL (t));
This page took 0.080128 seconds and 5 git commands to generate.