Commit ba52691c by Volker Reichelt Committed by Volker Reichelt

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
parent 26810721
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> 2004-10-08 Kazu Hirata <kazu@cs.umass.edu>
* pt.c, search.c: Fix comment typos. * pt.c, search.c: Fix comment typos.
......
...@@ -1463,6 +1463,7 @@ dump_expr (tree t, int flags) ...@@ -1463,6 +1463,7 @@ dump_expr (tree t, int flags)
case CEIL_DIV_EXPR: case CEIL_DIV_EXPR:
case FLOOR_DIV_EXPR: case FLOOR_DIV_EXPR:
case ROUND_DIV_EXPR: case ROUND_DIV_EXPR:
case RDIV_EXPR:
dump_binary_op ("/", t, flags); dump_binary_op ("/", t, flags);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment