diff options
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 49ded5e..9446f2a 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -2056,6 +2056,10 @@ dump_expr (tree t, int flags) pp_expression (cxx_pp, t); break; + case OBJ_TYPE_REF: + dump_expr (resolve_virtual_fun_from_obj_type_ref (t), flags); + break; + /* This list is incomplete, but should suffice for now. It is very important that `sorry' does not call `report_error_function'. That could cause an infinite loop. */ |