From: Jakub Dupak <[email protected]>
gcc/rust/ChangeLog:
* ast/rust-ast-dump.cc (Dump::visit): Remove extraneous string when
dumping statements.
Signed-off-by: Jakub Dupak <[email protected]>
---
gcc/rust/ast/rust-ast-dump.cc | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gcc/rust/ast/rust-ast-dump.cc b/gcc/rust/ast/rust-ast-dump.cc
index 477805f19f3..9ec847c4f88 100644
--- a/gcc/rust/ast/rust-ast-dump.cc
+++ b/gcc/rust/ast/rust-ast-dump.cc
@@ -848,7 +848,7 @@ Dump::visit (BlockExpr &expr)
stream << "{\n";
indentation.increment ();
- visit_items_as_lines (expr.get_statements (), "; /* stmt */");
+ visit_items_as_lines (expr.get_statements (), ";");
if (expr.has_tail_expr ())
visit_as_line (expr.get_tail_expr (), " /* tail expr */\n");
@@ -1205,7 +1205,6 @@ Dump::visit (TypeAlias &type_alias)
visit (type_alias.get_where_clause ());
stream << " = ";
visit (type_alias.get_type_aliased ());
- stream << ";\n";
}
void
--
2.39.1
--
Gcc-rust mailing list
[email protected]
https://gcc.gnu.org/mailman/listinfo/gcc-rust