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 20b20b4..4cf0041 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -2678,6 +2678,10 @@ dump_expr (cxx_pretty_printer *pp, tree t, int flags) pp_cxx_offsetof_expression (pp, t); break; + case ADDRESSOF_EXPR: + pp_cxx_addressof_expression (pp, t); + break; + case SCOPE_REF: dump_decl (pp, t, flags); break; |