]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR c++/17868 (RDIV_EXPR not supported by dump_expr)
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>
Fri, 8 Oct 2004 19:40:57 +0000 (19:40 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Fri, 8 Oct 2004 19:40:57 +0000 (19:40 +0000)
PR c++/17868
* error.c (dump_expr): Add missing case for RDIV_EXPR.

From-SVN: r88781

gcc/cp/ChangeLog
gcc/cp/error.c

index 80ea39131e90c63e9cd0be6057bd2d1e5a9e3379..ca408ecdef6d34a3ef1c5a3aa2ca3467e5362723 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-08  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+       PR c++/17868
+       * error.c (dump_expr): Add missing case for RDIV_EXPR.
+
 2004-10-08  Kazu Hirata  <kazu@cs.umass.edu>
 
        * pt.c, search.c: Fix comment typos.
index b6148fa81ec8578bd356e022a5f2ededa06ebc2e..8ac6e2b690427da4c8145e11cacad4cbc1de7953 100644 (file)
@@ -1463,6 +1463,7 @@ dump_expr (tree t, int flags)
     case CEIL_DIV_EXPR:
     case FLOOR_DIV_EXPR:
     case ROUND_DIV_EXPR:
+    case RDIV_EXPR:
       dump_binary_op ("/", t, flags);
       break;