]> 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, 10 Dec 2004 17:02:31 +0000 (17:02 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Fri, 10 Dec 2004 17:02:31 +0000 (17:02 +0000)
PR c++/17868
* error.c (dump_expr): Add missing case for RDIV_EXPR.

From-SVN: r91998

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

index 200b2b1867b83eea3b626c04e80fd3b26dd75bf3..8f633580d6dc8503763bc25564ad9192df012d78 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-10  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+       PR c++/17868
+       * error.c (dump_expr): Add missing case for RDIV_EXPR.
+
 2004-12-09  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR c++/16681
index bd99ef49b5fa5c24e0f2fa8a093dbb229110ea93..72463d5cc6191ce9a77da379f4a7d3ef19a398bf 100644 (file)
@@ -1724,6 +1724,7 @@ dump_expr (t, flags)
     case CEIL_DIV_EXPR:
     case FLOOR_DIV_EXPR:
     case ROUND_DIV_EXPR:
+    case RDIV_EXPR:
       dump_binary_op ("/", t, flags);
       break;