re PR c++/17868 (RDIV_EXPR not supported by dump_expr)

PR c++/17868
	* error.c (dump_expr): Add missing case for RDIV_EXPR.

From-SVN: r88781
This commit is contained in:
Volker Reichelt 2004-10-08 19:40:57 +00:00 committed by Volker Reichelt
parent 268107218c
commit ba52691ca1
2 changed files with 6 additions and 0 deletions

View 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.

View 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;