diff options
author | Owen Avery <powerboat9.gamer@gmail.com> | 2023-04-26 09:29:04 -0400 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 18:34:16 +0100 |
commit | b181ea7289b229b1e5971ccbbdd4f74dbdacefa9 (patch) | |
tree | 895086ac63c219ccd31d21eed616da74d7aa554c /gcc/rust/ast/rust-expr.h | |
parent | 35a4c25ae45adc7439327c8981e63f824c88fa5c (diff) | |
download | gcc-b181ea7289b229b1e5971ccbbdd4f74dbdacefa9.zip gcc-b181ea7289b229b1e5971ccbbdd4f74dbdacefa9.tar.gz gcc-b181ea7289b229b1e5971ccbbdd4f74dbdacefa9.tar.bz2 |
gccrs: Handle replacing stripped tail expressions
gcc/rust/ChangeLog:
* ast/rust-ast.cc
(BlockExpr::strip_tail_expr):
Try to take new tail expression from statements list.
* ast/rust-expr.h
(BlockExpr::strip_tail_expr):
Replace definition with only declaration.
gcc/testsuite/ChangeLog:
* rust/execute/torture/cfg-tail.rs: New test.
Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/ast/rust-expr.h')
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index abe6e03..c43baf3 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -2446,7 +2446,7 @@ public: } // Removes the tail expression from the block. - void strip_tail_expr () { expr = nullptr; } + void strip_tail_expr (); const std::vector<Attribute> &get_outer_attrs () const { return outer_attrs; } std::vector<Attribute> &get_outer_attrs () override { return outer_attrs; } |